{"info":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","description":"<html><head></head><body><h1 id=\"welcome-to-curator-api\">Welcome to Curator API</h1><p>The Curator REST API enables you to interact with Curator programmatically. Use this API to build apps, script interactions with Curator, or develop any other type of integration. This page documents the REST resources currently available in Curator API, including the HTTP response codes and example requests and responses.</p><h1 id=\"openapi\">OpenAPI</h1><p>OpenAPI Specification is an API description format for REST APIs. Curator REST API conforms to <a href=\"https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md\">OpenAPI 3.0 Specification</a>.</p><p>Curator REST OpenAPI specification can be downloaded using the link above and imported into tools such as <a href=\"https://www.postman.com/\">Postman</a> for testing or <a href=\"https://swagger.io/tools/swagger-codegen/\">Swagger Codegen</a> for SDK code generation.</p><h1 id=\"schema\">Schema</h1><p>All API access is accessed from https://[host]/CuratorGateway/api/v1. All data is sent and received as JSON.</p><p>Blank fields are included as <code>null</code> instead of being omitted.</p><p>All timestamps return in ISO 8601 format and are UTC without timezone information:</p><p><code>YYYY-MM-DDTHH:MM:SSZ</code></p><h1 id=\"version-and-uri\">Version and URI</h1><p>This documentation is for <b>version 1</b> of the Curator REST API, which is the latest version.</p><p>The URIs for resources have the following structure:</p><p><code>https://[host]/CuratorGateway/api/v1/</code></p><p>For example, <code>https://[host]/CuratorGateway/api/v1/assets/00000000000000000000000001162429</code></p><h1 id=\"root-endpoint\">Root Endpoint</h1><p>You can issue a <code>GET</code> request to the root endpoint to get all the endpoint categories that the Curator REST API v1 supports:</p><p><code>https://[host]/CuratorGateway/api/v1</code></p><h1 id=\"hypermedia\">Hypermedia</h1><p>All resources may have one or more <code>href</code> properties linking to other resources. These are meant to provide explicit URLs so that proper API clients don't need to construct URLs on their own. It is highly recommended that API clients use these. Doing so will make future upgrades of the API easier for developers. All URLs are expected to be proper RFC 6570 URI templates.</p><p>Such as:</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"href\": \"https://[host]/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/MyMetadataName\",\n    \"displayName\": \"My Metadata Name\",\n    \"values\": [\n        \"My Metadata Value\"\n    ],\n    \"type\": \"Text\",\n    \"name\": {\n        \"href\": \"https://[host]/CuratorGateway/api/v1/metadatanames/MyMetadataName\"\n    }\n}\n\n</code></pre><h1 id=\"status-codes\">Status Codes</h1><p>The Curator REST API uses the standard <a href=\"https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html\">HTTP status codes</a>.</p><p>Operations that return an error status code may also return a response body containing details of the error or errors. The schema for each response code can be found under each API request.</p><h1 id=\"oauth2-authentication\">OAuth2 Authentication</h1><p>When interaction with the Curator API, your application will access Curator on behalf of your users.</p><p>Curator API uses <a href=\"https://oauth.net/2/\">OAuth 2.0</a>, an open specification, to authorise access to a user's data and Curator API resources. The primary goal of OAuth is to allow developers to interact with Curator API without requiring them to store sensitive credentials.</p><p>Curator API supports common OAuth 2.0 scenarios such as those for web server, client-side, installed, and limited-input device applications.</p><p>Once complete, the OAuth flow returns an access token to your client application. This access token should be added to all Curator API requests in the <code>Authorization</code> HTTP header in this format <code>Bearer [access token]</code>.</p><h3>Registering a Client Application</h3><p>In order for your application to request an access token on behalf of a user, you must first register it with Curator. This can be done via the Curator Gateway admin console (Authentication -&gt; Clients).</p><p>Once you have registered your client application you will be issued a <code>client_id</code>.</p><h3>API Resource Scopes</h3><p>When you add your client application you will be asked which API Resources <a href=\"https://oauth.net/2/scope/\">scopes</a> that you client application needs access to. The selected scopes are applied to your access token and determine which API calls your application is allowed to execute. Each Curator API request below documents which API Resoure scopes are required.</p><p>Below is a list of example API resource scopes:</p><ul><li><p><code>Curator.Server.API</code></p></li><li><p><code>Curator.Gateway.API</code></p></li><li><p><code>Curator.ProcessEngine.API</code></p></li></ul><p>See the Authentication section below for a complete list of supported API resource scopes.</p><h3>Authorisation Code Grant Type</h3><p>In OAuth 2.0, the term “grant type” refers to the way an application gets an access token. OAuth 2.0 defines several grant types which Curator supports.</p><p>The <a href=\"https://oauth.net/2/grant-types/authorization-code/\">Authorization Code</a> is the recommended OAuth grant type for all applications. When you register your client application you can specifiy the supported grant types.</p><p>At a high level, the Authorisation Code flow has the following steps:</p><ul><li><p>The client application makes a request to the <code>authorize</code> endpoint.</p></li><li><p>Curator redirects the user to the login screen.</p></li><li><p>The user is redirected back to the client application with an authorisation code in the query string.</p></li><li><p>The client application exchanges the authorisation code for an access token using the <code>token</code> endpoint.</p></li></ul><h3>Requesting an Access Token</h3><p>To request an access token using the authorisation code grant type.</p><p>1. Make a GET request to the <code>authorize</code> endpoint.</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://[host]/CuratorGateway/connect/authorize?client_id=0a677a41c5f7491d949c9eb4b1098ab0&amp;redirect_uri=https://myapp.com&amp;response_type=code&amp;grant_type=authorization_code&amp;scope=Curator.Server.API Curator.Gateway.API\n\n</code></pre><ul><li><p><code>response_type=code</code> - This tells the Curator that the application is initiating the authorisation code flow.</p></li><li><p><code>client_id</code> - Your client application id.</p></li><li><p><code>redirect_uri</code> - Tells the Curator where to send the user back to after they approve the request.</p></li><li><p><code>scope</code> - One or more space-separated strings indicating which permissions the application is requesting. See the authentication section below for a complete list of API resource scopes.</p></li></ul><p>2. The user will then be redirected to the Curator login screen and asked if they would like to authorise your client application.</p><p>3. If the user approves the authorisation request, Curator will redirect back to the <code>redirect_uri</code> specified in step 1., adding <code>code</code> to the query string.</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://myapp.com?code=CDD37395D64516E883615AD8862862585A5765C07E890E1022B708A43C2C04F7\n\n</code></pre><p>4. The <code>code</code> can now be exchanged for an access token using the <code>token</code> endpoint.</p><p>The client application makes a POST request to the Curator's token endpoint with the following parameters:</p><ul><li><p><code>grant_type=authorization_code</code> - This tells the Curator that the application is using the authorisation code flow.</p></li><li><p><code>code</code> - The application includes the authorisation code it was given in the redirect.</p></li><li><p><code>redirect_uri</code> - The same redirect URI that was used when requesting the code.</p></li><li><p><code>client_id</code> - The application’s client ID.</p></li><li><p><code>client_secret</code> - The application’s client secret. This should be the same as the <code>client_id</code>.</p></li></ul><p>The response will include the <code>access_token</code> which can then be used to make Curator API requests.</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"access_token\": \"A52CF2278F7749B914102FA39C8D6A1834C676EBA2D86AE7710A816FDA9E4D11\",\n    \"expires_in\": 3600,\n    \"token_type\": \"Bearer\",\n    \"scope\": \"Curator.Server.API Curator.Gateway.API\"\n}\n\n</code></pre><h3>Authentication Q&amp;A</h3><p><b>Can I use the simpler 'resource owner password' grant type?</b></p><p><br>The 'OAuth 2.0 Security Best Current Practice' disallows the password grant entirely. This<br>grant type insecurely exposes the credentials of the user<br>to the client. Even if the client is benign, this results in an<br>increased attack surface (credentials can leak in more places than<br>just the Curator Gateway) and users are trained to enter their credentials in<br>places other than the Curator Gateway.<br>Also, features such as multi-factor authentication, single sign-on and federation are not possible.<br></p><p><b>What about the 'client credentials' server-to-server grant type?</b></p><p><br>All Curator API requests require a users identity to be included in the access token<br>so that Curator can evaluate the acting users permissions. The process for obtaining access tokens on-behalf of a user<br>is described above. Although supported by Curator Gateway, grant types like 'client credentials' should not be used.<br></p><h1 id=\"pagination\">Pagination</h1><p>The Curartor REST API uses pagination to improve performance. Pagination is enforced for operations that could return a large collection of resources.</p><p>When a request is made for paged resources, <code>offset</code> and <code>limit</code> query string parameters can be used to define the position and size of the resultset, such as:</p>\n\n<p><code>https://[host]/CuratorGateway/api/v1/users?offset=5&amp;limit=10</code></p>\n<p>When you make a request to a paginated resource, the response wraps the returned array of values in a JSON object with paging metadata.</p><ul><li><p><code>offset</code> - The offset into the list of items.</p></li><li><p><code>limit</code> - The limit/size of items requested.</p></li><li><p><code>size</code> - The total number of resources.</p></li><li><p><code>next</code> - The link relation for the immediate next page of results.</p></li><li><p><code>last</code> - The link relation for the last page of results.</p></li><li><p><code>first</code> - The link relation for the first page of results.</p></li><li><p><code>previous</code> - The link relation for the immediate previous page of results.</p></li></ul>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"href\": \"https://[host]/CuratorGateway/api/v1/users?offset=5&amp;limit=10\",\n    \"rel\": [\n        \"collection\"\n    ],\n    \"offset\": 5,\n    \"limit\": 10,\n    \"size\": 23,\n    \"first\": {\n        \"href\": \"https://[host]/CuratorGateway/api/v1/users?offset=5&amp;limit=10\",\n        \"rel\": [\n            \"collection\"\n        ]\n    },\n    \"previous\": {\n        \"href\": \"https://[host]/CuratorGateway/api/v1/users?offset=5&amp;limit=10\",\n        \"rel\": [\n            \"collection\"\n        ]\n    },\n    \"next\": {\n        \"href\": \"https://[host]/CuratorGateway/api/v1/users?offset=15&amp;limit=10\",\n        \"rel\": [\n            \"collection\"\n        ]\n    },\n    \"last\": {\n        \"href\": \"https://[host]/CuratorGateway/api/v1/users?offset=20&amp;limit=10\",\n        \"rel\": [\n            \"collection\"\n        ]\n    },\n    \"value\": [\n    ...\n    ]\n}\n\n</code></pre><h1 id=\"asynchronous-operations\">Asynchronous Operations</h1><p>Some Curator REST API operations may trigger long-running or computationally expensive tasks. In these cases, the operation will schedule an asynchronous task and return a <a href=\"https://en.wikipedia.org/wiki/HTTP_302\"><code>302</code></a> response, indicating the location of the queued task in the <code>Location</code> header. You can query the task by making requests to <code>Get Task</code> for progress updates.</p><p>When the task finishes, the response object will contain the <code>results</code> field. The content of the field is specific to the operation that created the task.</p><p>Note that asynchronous tasks are not guaranteed to be run in order. In other words, if you need your tasks to execute in a certain order, you should start a task only after the prerequisite task(s) have finished.</p><h1 id=\"support-portal\">Support Portal</h1><p>If further information is required, please contact us via our <a href=\"http://docs.ipv.com/\">Support Portal</a> or visit the <a href=\"https://ipvltd.zendesk.com/\">Documentation Hub</a>.</p>\n\n<p>Contact Support:<br>Name: IPV<br>Email: <a href=\"mailto:support@ipv.com\">support@ipv.com</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Welcome to Curator API","slug":"welcome-to-curator-api"},{"content":"OpenAPI","slug":"openapi"},{"content":"Schema","slug":"schema"},{"content":"Version and URI","slug":"version-and-uri"},{"content":"Root Endpoint","slug":"root-endpoint"},{"content":"Hypermedia","slug":"hypermedia"},{"content":"Status Codes","slug":"status-codes"},{"content":"OAuth2 Authentication","slug":"oauth2-authentication"},{"content":"Pagination","slug":"pagination"},{"content":"Asynchronous Operations","slug":"asynchronous-operations"},{"content":"Support Portal","slug":"support-portal"}],"owner":"2965282","collectionId":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","publishedId":"UVXhovu6","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-01-12T10:37:09.000Z"},"item":[{"name":null,"item":[{"name":"Get API details.","id":"43140e16-c1e2-4314-b415-d29452bb2a66","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1","urlObject":{"path":["api","v1"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"98ecbd06-f3c4-4b44-8711-45f28cbf4a01","name":"The root API response.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":"https://dev.ipv.com/CuratorGateway/api/v1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1\",\n \"users\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/users\"\n },\n \"userGroups\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/usergroups\"\n },\n \"assets\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets\"\n },\n \"assetActivity\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity\"\n },\n \"metadataNames\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames\"\n },\n \"metadataViews\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews\"\n },\n \"clients\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients\"\n },\n \"myself\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/myself\"\n },\n \"openIdConfiguration\": {\n  \"href\": \"https://dev.ipv.com/.well-known/openid-configuration\"\n }\n}"},{"id":"ab00bf9d-9303-4f96-8703-7e05325ff930","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":"https://dev.ipv.com/CuratorGateway/api/v1"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"e122b00f-7bca-4730-a77d-b1c6a2026634","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":"https://dev.ipv.com/CuratorGateway/api/v1"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"43140e16-c1e2-4314-b415-d29452bb2a66"}],"id":"a64df406-d029-40ff-abf3-627a1f7d4a2a","_postman_id":"a64df406-d029-40ff-abf3-627a1f7d4a2a","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Asset Activity","item":[{"name":"Get asset activity.","id":"115ffc07-e113-437e-abea-6f38fa202856","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?assetIds=urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0&assetIds=urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad&userIds=urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0&userIds=urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=cupidatat fugiat Excepteur&names=reprehenderit ut proident&clientIds=urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0&clientIds=urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad&types=cupidatat fugiat Excepteur&types=reprehenderit ut proident&offset=1&limit=50","description":"<p>Gets a list of asset activity with searching/filtering.</p>\n","urlObject":{"path":["api","v1","assets","activity"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>An optional list of asset ids to get activity for.</p>\n","type":"text/plain"},"key":"assetIds","value":"urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0"},{"description":{"content":"<p>An optional list of asset ids to get activity for.</p>\n","type":"text/plain"},"key":"assetIds","value":"urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad"},{"description":{"content":"<p>An optional list of user ids to get activity for.</p>\n","type":"text/plain"},"key":"userIds","value":"urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0"},{"description":{"content":"<p>An optional list of user ids to get activity for.</p>\n","type":"text/plain"},"key":"userIds","value":"urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad"},{"description":{"content":"<p>A value indicating whether to enable grouping for this type.</p>\n","type":"text/plain"},"key":"groupByAsset.enabled","value":"true"},{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"groupByAsset.offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"groupByAsset.limit","value":"50"},{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"reprehenderit ut proident"},{"description":{"content":"<p>An optional list of clients ids to get activity for.</p>\n","type":"text/plain"},"key":"clientIds","value":"urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0"},{"description":{"content":"<p>An optional list of clients ids to get activity for.</p>\n","type":"text/plain"},"key":"clientIds","value":"urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad"},{"description":{"content":"<p>An optional list of activity types to return.</p>\n","type":"text/plain"},"key":"types","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of activity types to return.</p>\n","type":"text/plain"},"key":"types","value":"reprehenderit ut proident"},{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"0c88207f-a8e7-43b1-a8b9-324a000eae2c","name":"The list of asset activity is returned.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"activity\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity\",\n  \"rel\": [\n   \"collection\"\n  ],\n  \"offset\": 10,\n  \"limit\": 1,\n  \"size\": 50,\n  \"first\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"previous\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?limit=1&offset=-9\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"next\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?limit=1&offset=11\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"last\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?limit=1&offset=49\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"value\": [\n   {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/100\",\n    \"asset\": {\n     \"activity\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/activity\"\n     },\n     \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a\",\n     \"Id\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Id\",\n      \"displayName\": \"Id\",\n      \"values\": [\n       \"5be52a09-e43f-4a48-b41b-5c33b95ee53a\"\n      ],\n      \"type\": \"Guid\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Id\"\n      }\n     },\n     \"Name\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Name\",\n      \"displayName\": \"Name\",\n      \"values\": [\n       \"My Asset\"\n      ],\n      \"type\": \"Text\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Name\"\n      }\n     },\n     \"Description\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Description\",\n      \"displayName\": \"Description\",\n      \"values\": [\n       \"My Asset Description\"\n      ],\n      \"type\": \"Text\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Description\"\n      }\n     },\n     \"FolderId\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/FolderId\",\n      \"displayName\": \"FolderId\",\n      \"values\": [\n       \"00000000-0000-0000-0000-000001162429\"\n      ],\n      \"type\": \"Guid\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/FolderId\"\n      }\n     },\n     \"AssetType\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/AssetType\",\n      \"displayName\": \"AssetType\",\n      \"values\": [\n       \"Media\"\n      ],\n      \"type\": \"Text\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/AssetType\"\n      }\n     },\n     \"ProxyExists\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/ProxyExists\",\n      \"displayName\": \"ProxyExists\",\n      \"values\": [\n       \"True\"\n      ],\n      \"type\": \"Boolean\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/ProxyExists\"\n      }\n     }\n    },\n    \"id\": 100,\n    \"clientName\": \"Curator Clip Link\",\n    \"client\": {\n     \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/d82f59da-d142-43b7-8502-5ac3a66bf65a\"\n    },\n    \"comment\": \"Updated the description on this asset.\",\n    \"dateTime\": \"2022-01-12T08:34:14.0377058Z\",\n    \"type\": \"UPDATED\",\n    \"username\": \"ametcalfe@ipv.com\",\n    \"user\": {\n     \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/users/6a7cb61a-b473-4df4-be5f-1cdb5baaf364\"\n    },\n    \"remoteIpAddress\": \"192.158.1.38\"\n   }\n  ]\n },\n \"activityGroupedByAsset\": null\n}"},{"id":"dbbc6b5d-68ef-4ee7-a924-8322e72f5e54","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"4675e88f-580d-462b-8d1b-6a008b59e16d","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"7edb8dac-9287-488e-90be-75da40dde03e","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"a6f69658-0813-4d54-bb0b-9bda7ff87dfc","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"6d87fab5-14ae-4e72-a39d-3a82ef89f6ae","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"115ffc07-e113-437e-abea-6f38fa202856"},{"name":"Get asset activity by id.","id":"cfda51b4-9cd9-4d8a-8203-5746a5a9e5a4","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/:activityId","description":"<p>Returns the details of a single asset activity.\n            The activity is identified by its ID. If a matching activity is found its details are returned.</p>\n","urlObject":{"path":["api","v1","assets","activity",":activityId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"02fb2dbf-240e-467d-b534-f3fa3c23d286","description":{"content":"<p>(Required) The id of the activity to get.</p>\n","type":"text/plain"},"type":"any","value":"10","key":"activityId"}]}},"response":[{"id":"df254411-92c1-476d-b2df-2217b08e1f67","name":"Returned if the request is successful.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/:activityId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity",":activityId"],"variable":[{"key":"activityId","value":"10","description":"(Required) The id of the activity to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/100\",\n \"asset\": {\n  \"activity\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/activity\"\n  },\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a\",\n  \"Id\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Id\",\n   \"displayName\": \"Id\",\n   \"values\": [\n    \"5be52a09-e43f-4a48-b41b-5c33b95ee53a\"\n   ],\n   \"type\": \"Guid\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Id\"\n   }\n  },\n  \"Name\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Name\",\n   \"displayName\": \"Name\",\n   \"values\": [\n    \"My Asset\"\n   ],\n   \"type\": \"Text\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Name\"\n   }\n  },\n  \"Description\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Description\",\n   \"displayName\": \"Description\",\n   \"values\": [\n    \"My Asset Description\"\n   ],\n   \"type\": \"Text\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Description\"\n   }\n  },\n  \"FolderId\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/FolderId\",\n   \"displayName\": \"FolderId\",\n   \"values\": [\n    \"00000000-0000-0000-0000-000001162429\"\n   ],\n   \"type\": \"Guid\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/FolderId\"\n   }\n  },\n  \"AssetType\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/AssetType\",\n   \"displayName\": \"AssetType\",\n   \"values\": [\n    \"Media\"\n   ],\n   \"type\": \"Text\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/AssetType\"\n   }\n  },\n  \"ProxyExists\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/ProxyExists\",\n   \"displayName\": \"ProxyExists\",\n   \"values\": [\n    \"True\"\n   ],\n   \"type\": \"Boolean\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/ProxyExists\"\n   }\n  }\n },\n \"id\": 100,\n \"clientName\": \"Curator Clip Link\",\n \"client\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/9c5334c5-f678-40ec-81d3-1f9f471a6d7a\"\n },\n \"comment\": \"Updated the description on this asset.\",\n \"dateTime\": \"2022-01-12T08:34:14.0414664Z\",\n \"type\": \"UPDATED\",\n \"username\": \"ametcalfe@ipv.com\",\n \"user\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/users/a5b20bb7-7a8a-4b32-9325-cdab110b07d2\"\n },\n \"remoteIpAddress\": \"192.158.1.38\"\n}"},{"id":"dee7bb67-0f14-4002-ade0-0785a3b015f0","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/:activityId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity",":activityId"],"variable":[{"key":"activityId","value":"10","description":"(Required) The id of the activity to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"9e40af62-a93f-420b-a6dd-039930153bff","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/:activityId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity",":activityId"],"variable":[{"key":"activityId","value":"10","description":"(Required) The id of the activity to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"f02c6a9a-9147-48db-b62c-c8f6413531d5","name":"Returned if the activity with the specified id is not found.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/:activityId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity",":activityId"],"variable":[{"key":"activityId","value":"10","description":"(Required) The id of the activity to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"521b18dd-ff79-4b47-8138-62abdf189df1","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/:activityId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity",":activityId"],"variable":[{"key":"activityId","value":"10","description":"(Required) The id of the activity to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"0c98835b-e907-4156-8dd2-4366dfc53542","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/:activityId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets","activity",":activityId"],"variable":[{"key":"activityId","value":"10","description":"(Required) The id of the activity to get."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"cfda51b4-9cd9-4d8a-8203-5746a5a9e5a4"},{"name":"Get activity for an asset.","id":"6a39ec4b-1ac5-491e-9f89-1d6957eb768e","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/activity?userIds=urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0&userIds=urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad&names=cupidatat fugiat Excepteur&names=reprehenderit ut proident&clientIds=urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0&clientIds=urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad&types=cupidatat fugiat Excepteur&types=reprehenderit ut proident&offset=1&limit=50","description":"<p>Returns activity details for the specified asset.</p>\n","urlObject":{"path":["api","v1","assets",":assetId","activity"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>An optional list of user ids to get activity for.</p>\n","type":"text/plain"},"key":"userIds","value":"urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0"},{"description":{"content":"<p>An optional list of user ids to get activity for.</p>\n","type":"text/plain"},"key":"userIds","value":"urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad"},{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"reprehenderit ut proident"},{"description":{"content":"<p>An optional list of clients ids to get activity for.</p>\n","type":"text/plain"},"key":"clientIds","value":"urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0"},{"description":{"content":"<p>An optional list of clients ids to get activity for.</p>\n","type":"text/plain"},"key":"clientIds","value":"urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad"},{"description":{"content":"<p>An optional list of activity types to return.</p>\n","type":"text/plain"},"key":"types","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of activity types to return.</p>\n","type":"text/plain"},"key":"types","value":"reprehenderit ut proident"},{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[{"id":"9e5b327f-fe20-480d-bc14-dd71188b85a1","description":{"content":"<p>(Required) The id of the asset to get activity for.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"}]}},"response":[{"id":"c1ca6434-388c-41be-bac9-2aa13b5d378c","name":"Returned if the request is successful.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/activity?userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","activity"],"query":[{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get activity for."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"activity\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity\",\n  \"rel\": [\n   \"collection\"\n  ],\n  \"offset\": 10,\n  \"limit\": 1,\n  \"size\": 50,\n  \"first\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"previous\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?limit=1&offset=-9\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"next\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?limit=1&offset=11\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"last\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?limit=1&offset=49\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"value\": [\n   {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/100\",\n    \"asset\": {\n     \"activity\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/activity\"\n     },\n     \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a\",\n     \"Id\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Id\",\n      \"displayName\": \"Id\",\n      \"values\": [\n       \"5be52a09-e43f-4a48-b41b-5c33b95ee53a\"\n      ],\n      \"type\": \"Guid\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Id\"\n      }\n     },\n     \"Name\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Name\",\n      \"displayName\": \"Name\",\n      \"values\": [\n       \"My Asset\"\n      ],\n      \"type\": \"Text\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Name\"\n      }\n     },\n     \"Description\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Description\",\n      \"displayName\": \"Description\",\n      \"values\": [\n       \"My Asset Description\"\n      ],\n      \"type\": \"Text\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Description\"\n      }\n     },\n     \"FolderId\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/FolderId\",\n      \"displayName\": \"FolderId\",\n      \"values\": [\n       \"00000000-0000-0000-0000-000001162429\"\n      ],\n      \"type\": \"Guid\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/FolderId\"\n      }\n     },\n     \"AssetType\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/AssetType\",\n      \"displayName\": \"AssetType\",\n      \"values\": [\n       \"Media\"\n      ],\n      \"type\": \"Text\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/AssetType\"\n      }\n     },\n     \"ProxyExists\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/ProxyExists\",\n      \"displayName\": \"ProxyExists\",\n      \"values\": [\n       \"True\"\n      ],\n      \"type\": \"Boolean\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/ProxyExists\"\n      }\n     }\n    },\n    \"id\": 100,\n    \"clientName\": \"Curator Clip Link\",\n    \"client\": {\n     \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/d63ca26e-5639-4b99-a13b-f6d53aab676f\"\n    },\n    \"comment\": \"Updated the description on this asset.\",\n    \"dateTime\": \"2022-01-12T08:34:14.0484479Z\",\n    \"type\": \"UPDATED\",\n    \"username\": \"ametcalfe@ipv.com\",\n    \"user\": {\n     \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/users/c2fff4ac-3389-4969-8d8d-2692639c19eb\"\n    },\n    \"remoteIpAddress\": \"192.158.1.38\"\n   }\n  ]\n },\n \"activityGroupedByAsset\": null\n}"},{"id":"644e306c-9648-4927-a8ef-39aa72c6882d","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/activity?userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","activity"],"query":[{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get activity for."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"26ca3239-e3d4-4a31-b4a0-f0349e9118be","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/activity?userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","activity"],"query":[{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get activity for."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"26dbbc90-d9c9-4611-9829-7343b5162ecb","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/activity?userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","activity"],"query":[{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get activity for."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"d5fb901e-b44d-42c4-a8d1-32bffe55b088","name":"Returned if the asset is not found or the user does not have permission to view it.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/activity?userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","activity"],"query":[{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get activity for."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"ffe4035b-9d47-4105-b436-54d756e60564","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/activity?userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","activity"],"query":[{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get activity for."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"baf82d16-43d9-4c26-9082-80e2f053cc0c","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/activity?userIds=631e9b5f-aa5c-b3cd-28de-37561f905564&userIds=a48534ea-d200-638c-5562-a0895c761ccf&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","activity"],"query":[{"key":"userIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"userIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get activity for."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"6a39ec4b-1ac5-491e-9f89-1d6957eb768e"}],"id":"fe4d71f4-0bd7-4227-9aac-669afefeddd1","_postman_id":"fe4d71f4-0bd7-4227-9aac-669afefeddd1","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Asset Thumbnails","item":[{"name":"Get asset thumbnail.","id":"9bf4d17a-6cc8-4b4f-afc2-7057acbaefe9","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/thumbnail","description":"<p>Returns the asset thumbnail.\n            The asset is identified by its ID. If a matching asset is found and it has a thumbnail a thumbnail image is returned.</p>\n","urlObject":{"path":["api","v1","assets",":assetId","thumbnail"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"92a8dd64-e8b7-474c-ae8d-e66caa4efc41","description":{"content":"<p>(Required) The id of the asset to get the thumbnail for.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"}]}},"response":[{"id":"5f949d79-0fb3-43f5-8781-9dd6c2e749f1","name":"Returned if the request is successful.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/thumbnail","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","thumbnail"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get the thumbnail for."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"fbf0b653-6834-4ba3-90be-9802a0e04d84","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/thumbnail","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","thumbnail"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get the thumbnail for."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"ccf9fa6c-6bbb-4a70-b632-a5435fda8c2e","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/thumbnail","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","thumbnail"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get the thumbnail for."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"26b0c323-cfc4-4203-949d-ca09d45c3ab3","name":"Returned if the asset is not found or the user does not have permission to view it or the asset does not have a thumbnail.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/thumbnail","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","thumbnail"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get the thumbnail for."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"09341ece-0a1e-4838-8e56-07564712ef83","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/thumbnail","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","thumbnail"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get the thumbnail for."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"516ffed3-afd4-41bd-b779-f1a51a72d9c5","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/thumbnail","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","thumbnail"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get the thumbnail for."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"9bf4d17a-6cc8-4b4f-afc2-7057acbaefe9"}],"id":"726786d1-2fdc-4f98-a23b-f832fa7fb55f","_postman_id":"726786d1-2fdc-4f98-a23b-f832fa7fb55f","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Assets","item":[{"name":"Get assets.","id":"a79f45e9-a569-4d69-950c-2410f57567c9","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets?names=cupidatat fugiat Excepteur&names=reprehenderit ut proident&folderIds=urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0&folderIds=urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad&recursive=true&assetTypes=cupidatat fugiat Excepteur&assetTypes=reprehenderit ut proident&queries=cupidatat fugiat Excepteur&queries=reprehenderit ut proident&andQueries=false&offset=1&limit=50","description":"<p>Gets a list of assets with basic searching.</p>\n","urlObject":{"path":["api","v1","assets"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"reprehenderit ut proident"},{"description":{"content":"<p>An optional list of folder ids to restrict the search to. If not provided, searches are performed from the root folder.</p>\n","type":"text/plain"},"key":"folderIds","value":"urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0"},{"description":{"content":"<p>An optional list of folder ids to restrict the search to. If not provided, searches are performed from the root folder.</p>\n","type":"text/plain"},"key":"folderIds","value":"urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad"},{"description":{"content":"<p>A value indicating whether to perform a recursive search down the folder tree. The default value is true.</p>\n","type":"text/plain"},"key":"recursive","value":"true"},{"description":{"content":"<p>An optional list of asset types to return. If not set, all asset types are returned.</p>\n","type":"text/plain"},"key":"assetTypes","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of asset types to return. If not set, all asset types are returned.</p>\n","type":"text/plain"},"key":"assetTypes","value":"reprehenderit ut proident"},{"description":{"content":"<p>An optional list of text queries to filter the results by.\nThe format is [fieldname]:[searchvalue]. If a field is not specified, all fields are searched.</p>\n<ul>\n<li>can be used as a wildcard character.</li>\n</ul>\n<ul>\n<li>can be used to indicate a NOT query.\n\" can be used to form phase queries.\nExamples:</li>\n</ul>\n<ul>\n<li>Name:\"My Asset\"</li>\n<li>abc*</li>\n<li>Name:-test</li>\n</ul>\n","type":"text/plain"},"key":"queries","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of text queries to filter the results by.\nThe format is [fieldname]:[searchvalue]. If a field is not specified, all fields are searched.</p>\n<ul>\n<li>can be used as a wildcard character.</li>\n</ul>\n<ul>\n<li>can be used to indicate a NOT query.\n\" can be used to form phase queries.\nExamples:</li>\n</ul>\n<ul>\n<li>Name:\"My Asset\"</li>\n<li>abc*</li>\n<li>Name:-test</li>\n</ul>\n","type":"text/plain"},"key":"queries","value":"reprehenderit ut proident"},{"description":{"content":"<p>A value indicating whether to logically AND any specified queries. The default behaviour is to OR the queries.</p>\n","type":"text/plain"},"key":"andQueries","value":"false"},{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"f0967549-c95e-4043-8338-a07c05dd98f6","name":"The list of assets is returned.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets?names=consectetur culpa minim&names=id qui aute sint aliqua&folderIds=631e9b5f-aa5c-b3cd-28de-37561f905564&folderIds=a48534ea-d200-638c-5562-a0895c761ccf&recursive=true&assetTypes=consectetur culpa minim&assetTypes=id qui aute sint aliqua&queries=consectetur culpa minim&queries=id qui aute sint aliqua&andQueries=false&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"folderIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"folderIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"recursive","value":"true"},{"key":"assetTypes","value":"consectetur culpa minim"},{"key":"assetTypes","value":"id qui aute sint aliqua"},{"key":"queries","value":"consectetur culpa minim"},{"key":"queries","value":"id qui aute sint aliqua"},{"key":"andQueries","value":"false"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"activity\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/activity\"\n  },\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a\",\n  \"Id\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Id\",\n   \"displayName\": \"Id\",\n   \"values\": [\n    \"5be52a09-e43f-4a48-b41b-5c33b95ee53a\"\n   ],\n   \"type\": \"Guid\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Id\"\n   }\n  },\n  \"Name\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Name\",\n   \"displayName\": \"Name\",\n   \"values\": [\n    \"My Asset\"\n   ],\n   \"type\": \"Text\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Name\"\n   }\n  },\n  \"Description\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Description\",\n   \"displayName\": \"Description\",\n   \"values\": [\n    \"My Asset Description\"\n   ],\n   \"type\": \"Text\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Description\"\n   }\n  },\n  \"FolderId\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/FolderId\",\n   \"displayName\": \"FolderId\",\n   \"values\": [\n    \"00000000-0000-0000-0000-000001162429\"\n   ],\n   \"type\": \"Guid\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/FolderId\"\n   }\n  },\n  \"AssetType\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/AssetType\",\n   \"displayName\": \"AssetType\",\n   \"values\": [\n    \"Media\"\n   ],\n   \"type\": \"Text\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/AssetType\"\n   }\n  },\n  \"ProxyExists\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/ProxyExists\",\n   \"displayName\": \"ProxyExists\",\n   \"values\": [\n    \"True\"\n   ],\n   \"type\": \"Boolean\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/ProxyExists\"\n   }\n  }\n }\n]"},{"id":"f21ff907-77f2-4c48-aac6-302d48390745","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets?names=consectetur culpa minim&names=id qui aute sint aliqua&folderIds=631e9b5f-aa5c-b3cd-28de-37561f905564&folderIds=a48534ea-d200-638c-5562-a0895c761ccf&recursive=true&assetTypes=consectetur culpa minim&assetTypes=id qui aute sint aliqua&queries=consectetur culpa minim&queries=id qui aute sint aliqua&andQueries=false&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"folderIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"folderIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"recursive","value":"true"},{"key":"assetTypes","value":"consectetur culpa minim"},{"key":"assetTypes","value":"id qui aute sint aliqua"},{"key":"queries","value":"consectetur culpa minim"},{"key":"queries","value":"id qui aute sint aliqua"},{"key":"andQueries","value":"false"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"bae17961-6b47-49d8-98d4-26e87432a55e","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets?names=consectetur culpa minim&names=id qui aute sint aliqua&folderIds=631e9b5f-aa5c-b3cd-28de-37561f905564&folderIds=a48534ea-d200-638c-5562-a0895c761ccf&recursive=true&assetTypes=consectetur culpa minim&assetTypes=id qui aute sint aliqua&queries=consectetur culpa minim&queries=id qui aute sint aliqua&andQueries=false&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"folderIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"folderIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"recursive","value":"true"},{"key":"assetTypes","value":"consectetur culpa minim"},{"key":"assetTypes","value":"id qui aute sint aliqua"},{"key":"queries","value":"consectetur culpa minim"},{"key":"queries","value":"id qui aute sint aliqua"},{"key":"andQueries","value":"false"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"4aa590fd-ff80-4917-8705-a8ea903818c7","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets?names=consectetur culpa minim&names=id qui aute sint aliqua&folderIds=631e9b5f-aa5c-b3cd-28de-37561f905564&folderIds=a48534ea-d200-638c-5562-a0895c761ccf&recursive=true&assetTypes=consectetur culpa minim&assetTypes=id qui aute sint aliqua&queries=consectetur culpa minim&queries=id qui aute sint aliqua&andQueries=false&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"folderIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"folderIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"recursive","value":"true"},{"key":"assetTypes","value":"consectetur culpa minim"},{"key":"assetTypes","value":"id qui aute sint aliqua"},{"key":"queries","value":"consectetur culpa minim"},{"key":"queries","value":"id qui aute sint aliqua"},{"key":"andQueries","value":"false"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"c71d3195-1400-45f3-8e85-23663c2c14ad","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets?names=consectetur culpa minim&names=id qui aute sint aliqua&folderIds=631e9b5f-aa5c-b3cd-28de-37561f905564&folderIds=a48534ea-d200-638c-5562-a0895c761ccf&recursive=true&assetTypes=consectetur culpa minim&assetTypes=id qui aute sint aliqua&queries=consectetur culpa minim&queries=id qui aute sint aliqua&andQueries=false&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"folderIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"folderIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"recursive","value":"true"},{"key":"assetTypes","value":"consectetur culpa minim"},{"key":"assetTypes","value":"id qui aute sint aliqua"},{"key":"queries","value":"consectetur culpa minim"},{"key":"queries","value":"id qui aute sint aliqua"},{"key":"andQueries","value":"false"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"435f4002-ef5d-4222-95c0-8bca2a89fdc0","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets?names=consectetur culpa minim&names=id qui aute sint aliqua&folderIds=631e9b5f-aa5c-b3cd-28de-37561f905564&folderIds=a48534ea-d200-638c-5562-a0895c761ccf&recursive=true&assetTypes=consectetur culpa minim&assetTypes=id qui aute sint aliqua&queries=consectetur culpa minim&queries=id qui aute sint aliqua&andQueries=false&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"folderIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"folderIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"recursive","value":"true"},{"key":"assetTypes","value":"consectetur culpa minim"},{"key":"assetTypes","value":"id qui aute sint aliqua"},{"key":"queries","value":"consectetur culpa minim"},{"key":"queries","value":"id qui aute sint aliqua"},{"key":"andQueries","value":"false"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"a79f45e9-a569-4d69-950c-2410f57567c9"},{"name":"Get asset.","id":"0a80e2ef-30d1-47b3-9ea0-371c6d872da3","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?names=cupidatat fugiat Excepteur&names=reprehenderit ut proident","description":"<p>Returns the details for an asset.\n            The asset is identified by its ID. If a matching asset is found its details are returned.</p>\n","urlObject":{"path":["api","v1","assets",":assetId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>An optional list list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"reprehenderit ut proident"}],"variable":[{"id":"b0d6faa3-aa4d-4271-b33c-e6d646b9a1ab","description":{"content":"<p>(Required) The id of the asset to get.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"}]}},"response":[{"id":"4de05b7d-2fe6-4a18-bd40-cbf69d007294","name":"Returned if the request is successful.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?names=consectetur culpa minim&names=id qui aute sint aliqua","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"activity\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/activity\"\n },\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a\",\n \"Id\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Id\",\n  \"displayName\": \"Id\",\n  \"values\": [\n   \"5be52a09-e43f-4a48-b41b-5c33b95ee53a\"\n  ],\n  \"type\": \"Guid\",\n  \"name\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Id\"\n  }\n },\n \"Name\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Name\",\n  \"displayName\": \"Name\",\n  \"values\": [\n   \"My Asset\"\n  ],\n  \"type\": \"Text\",\n  \"name\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Name\"\n  }\n },\n \"Description\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Description\",\n  \"displayName\": \"Description\",\n  \"values\": [\n   \"My Asset Description\"\n  ],\n  \"type\": \"Text\",\n  \"name\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Description\"\n  }\n },\n \"FolderId\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/FolderId\",\n  \"displayName\": \"FolderId\",\n  \"values\": [\n   \"00000000-0000-0000-0000-000001162429\"\n  ],\n  \"type\": \"Guid\",\n  \"name\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/FolderId\"\n  }\n },\n \"AssetType\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/AssetType\",\n  \"displayName\": \"AssetType\",\n  \"values\": [\n   \"Media\"\n  ],\n  \"type\": \"Text\",\n  \"name\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/AssetType\"\n  }\n },\n \"ProxyExists\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/ProxyExists\",\n  \"displayName\": \"ProxyExists\",\n  \"values\": [\n   \"True\"\n  ],\n  \"type\": \"Boolean\",\n  \"name\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/ProxyExists\"\n  }\n }\n}"},{"id":"b88bc9b0-c47b-4605-8a9d-f427fdb4a2bb","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?names=consectetur culpa minim&names=id qui aute sint aliqua","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"18dae998-98f8-4220-94d5-a20dde7b7d89","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?names=consectetur culpa minim&names=id qui aute sint aliqua","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"72107cd2-5da5-45f1-8c91-d6f236001a41","name":"Returned if the asset is not found or the user does not have permission to view it.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?names=consectetur culpa minim&names=id qui aute sint aliqua","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"fc931b73-1011-4bde-9c4a-dd36264e6ab8","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?names=consectetur culpa minim&names=id qui aute sint aliqua","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"a1fa7605-f720-437c-bc56-9e75c3109261","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?names=consectetur culpa minim&names=id qui aute sint aliqua","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"0a80e2ef-30d1-47b3-9ea0-371c6d872da3"},{"name":"Does asset exist?","id":"6afd485a-4074-433a-b648-c676760a5873","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"HEAD","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","description":"<p>Used to check if an asset exists with the specified id.</p>\n","urlObject":{"path":["api","v1","assets",":assetId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"cacfdc15-a0c6-40fc-a4df-a14b3e363308","description":{"content":"<p>(Required) The asset id to check exists.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"}]}},"response":[{"id":"d547e4ca-5f12-4357-b8d4-02919597b0e9","name":"The asset does exist.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The asset id to check exists."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"0c1310f3-7515-42fd-8c5d-c0cdfa465ba0","name":"The request is unauthorised.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The asset id to check exists."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"f1ae538b-1fbf-4d70-8fb0-8bdc5e82a47d","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The asset id to check exists."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"3ca63d0a-5a0f-4e4f-84c9-0829cd4faac2","name":"The asset does not exist.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The asset id to check exists."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"5da24483-2ee1-42e0-9db4-d8f3a9de6bc1","name":"An internal server error occurred.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The asset id to check exists."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"a418acad-6509-48f5-b660-5736a835d402","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The asset id to check exists."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"6afd485a-4074-433a-b648-c676760a5873"},{"name":"Delete asset.","id":"64257cc8-f000-4ffa-8d23-1ac9551619dc","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"DELETE","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?delayUntil=1989-01-22T04:24:39.897Z","description":"<p>Used to delete or mark for delete an asset.</p>\n","urlObject":{"path":["api","v1","assets",":assetId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>An optional date/time to delay the delete until. The value should be a UTC datetime.</p>\n","type":"text/plain"},"key":"delayUntil","value":"1989-01-22T04:24:39.897Z"}],"variable":[{"id":"d94dc720-86bf-4ea1-a214-b53ecabe49e5","description":{"content":"<p>(Required) The id of the asset to delete.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"}]}},"response":[{"id":"06a7d13f-7a5d-481a-96bc-21f8cd77f927","name":"The asset was deleted or marked for delete successfully.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?delayUntil=1989-01-22T04:24:39.897Z","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"delayUntil","value":"1989-01-22T04:24:39.897Z"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"9974c30d-f0c5-49b9-b43e-ea9f561b532b","name":"The request is unauthorised.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?delayUntil=1989-01-22T04:24:39.897Z","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"delayUntil","value":"1989-01-22T04:24:39.897Z"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"75ad0a25-a425-471f-af07-808c7902af65","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?delayUntil=1989-01-22T04:24:39.897Z","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"delayUntil","value":"1989-01-22T04:24:39.897Z"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"2e9a013d-7b5a-47ae-8066-7942766c09c5","name":"The asset does not exist.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?delayUntil=1989-01-22T04:24:39.897Z","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"delayUntil","value":"1989-01-22T04:24:39.897Z"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"a4028484-78a1-4612-82bd-b4ceed28e6fc","name":"An internal server error occurred.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?delayUntil=1989-01-22T04:24:39.897Z","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"delayUntil","value":"1989-01-22T04:24:39.897Z"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"a7c96109-8d5a-43e1-9b11-d06c5df3e1f6","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId?delayUntil=1989-01-22T04:24:39.897Z","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"query":[{"key":"delayUntil","value":"1989-01-22T04:24:39.897Z"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"64257cc8-f000-4ffa-8d23-1ac9551619dc"},{"name":"Undelete asset.","id":"a26f5e3d-3e6d-4132-adde-2effa5f57244","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"PATCH","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","description":"<p>Used to undelete an asset that was marked for delete.</p>\n","urlObject":{"path":["api","v1","assets",":assetId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"14389040-074e-41d7-9cf7-b14377a3c2c5","description":{"content":"<p>(Required) The id of the asset to undelete.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"}]}},"response":[{"id":"33dbfef0-67c0-493e-ab54-e46b9725b671","name":"The asset was undeleted successfully.","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to undelete."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"be0e36b7-de55-47cf-8f46-a034c5f1335e","name":"The request is unauthorised.","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to undelete."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"ad8e4a18-87da-406c-8266-9497e426053f","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to undelete."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"45ab6d05-afe5-4cc7-bf8d-5bc978d747d3","name":"The asset does not exist.","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to undelete."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"433ff2b8-cf10-4ddb-91d1-df1066b256cf","name":"An internal server error occurred.","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to undelete."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"ba3be603-0164-4452-8b38-ecbe768b300d","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to undelete."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"a26f5e3d-3e6d-4132-adde-2effa5f57244"},{"name":"Get asset ancestors.","id":"ce1bf7f3-c8d0-4a3b-acdb-745fecdff06f","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/ancestors?names=cupidatat fugiat Excepteur&names=reprehenderit ut proident&orderTopDown=true&offset=1&limit=50","description":"<p>Gets a list of ancestors for the specified asset. The ancestors are ordered from 'closest' first.</p>\n","urlObject":{"path":["api","v1","assets",":assetId","ancestors"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"reprehenderit ut proident"},{"description":{"content":"<p>A value indicating whether to order the ancestors from top down.</p>\n","type":"text/plain"},"key":"orderTopDown","value":"true"},{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[{"id":"3744268d-8a0b-4bd8-b4a7-c370aabd2ff5","description":{"content":"<p>(Required) The id of the asset to get ancestors for.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"}]}},"response":[{"id":"4726be78-d370-4859-87e9-27f59c673df0","name":"The list of asset ancestors is returned.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/ancestors?names=consectetur culpa minim&names=id qui aute sint aliqua&orderTopDown=true&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","ancestors"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"orderTopDown","value":"true"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get ancestors for."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"activity\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/activity\"\n  },\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a\",\n  \"Id\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Id\",\n   \"displayName\": \"Id\",\n   \"values\": [\n    \"5be52a09-e43f-4a48-b41b-5c33b95ee53a\"\n   ],\n   \"type\": \"Guid\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Id\"\n   }\n  },\n  \"Name\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Name\",\n   \"displayName\": \"Name\",\n   \"values\": [\n    \"My Asset\"\n   ],\n   \"type\": \"Text\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Name\"\n   }\n  },\n  \"Description\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Description\",\n   \"displayName\": \"Description\",\n   \"values\": [\n    \"My Asset Description\"\n   ],\n   \"type\": \"Text\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Description\"\n   }\n  },\n  \"FolderId\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/FolderId\",\n   \"displayName\": \"FolderId\",\n   \"values\": [\n    \"00000000-0000-0000-0000-000001162429\"\n   ],\n   \"type\": \"Guid\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/FolderId\"\n   }\n  },\n  \"AssetType\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/AssetType\",\n   \"displayName\": \"AssetType\",\n   \"values\": [\n    \"Media\"\n   ],\n   \"type\": \"Text\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/AssetType\"\n   }\n  },\n  \"ProxyExists\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/ProxyExists\",\n   \"displayName\": \"ProxyExists\",\n   \"values\": [\n    \"True\"\n   ],\n   \"type\": \"Boolean\",\n   \"name\": {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/ProxyExists\"\n   }\n  }\n }\n]"},{"id":"61adc9be-8977-4414-b54f-4723d48b795b","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/ancestors?names=consectetur culpa minim&names=id qui aute sint aliqua&orderTopDown=true&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","ancestors"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"orderTopDown","value":"true"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get ancestors for."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"7aec5e94-d1df-490c-b478-e232b02d9dd9","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/ancestors?names=consectetur culpa minim&names=id qui aute sint aliqua&orderTopDown=true&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","ancestors"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"orderTopDown","value":"true"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get ancestors for."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"1fe5a762-3b4b-4c02-80eb-006af0a7318e","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/ancestors?names=consectetur culpa minim&names=id qui aute sint aliqua&orderTopDown=true&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","ancestors"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"orderTopDown","value":"true"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get ancestors for."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"0dadef1b-8883-494a-bae7-a77bd7de5b6b","name":"Returned if the asset is not found or the user does not have permission to view it.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/ancestors?names=consectetur culpa minim&names=id qui aute sint aliqua&orderTopDown=true&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","ancestors"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"orderTopDown","value":"true"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get ancestors for."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"4834a47f-a80e-4569-9a9e-7bff949284c3","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/ancestors?names=consectetur culpa minim&names=id qui aute sint aliqua&orderTopDown=true&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","ancestors"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"orderTopDown","value":"true"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get ancestors for."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"a3d795a8-6b9b-4f65-927c-03a5589e26aa","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/ancestors?names=consectetur culpa minim&names=id qui aute sint aliqua&orderTopDown=true&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","ancestors"],"query":[{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"orderTopDown","value":"true"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get ancestors for."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"ce1bf7f3-c8d0-4a3b-acdb-745fecdff06f"},{"name":"Get asset metadata.","id":"24038f69-661a-46fe-b28c-445d30cea445","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","description":"<p>Returns an assets metadata.</p>\n","urlObject":{"path":["api","v1","assets",":assetId","metadata",":name"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"ae1c8f24-aa31-4fd6-bccd-45e9aceec0d8","description":{"content":"<p>(Required) The id of the asset to get metadata for.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"},{"id":"a0d693fa-6939-442a-a960-5e9bdbfd67c3","description":{"content":"<p>(Required) The name of metadata to return.</p>\n","type":"text/plain"},"type":"any","value":"My Metadata Name","key":"name"}]}},"response":[{"id":"c10017e9-221c-4911-9f24-ee4a86872542","name":"The asset metadata.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to return."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/MyMetadataName\",\n \"displayName\": \"My Metadata Name\",\n \"values\": [\n  \"My Metadata Value\"\n ],\n \"type\": \"Text\",\n \"name\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/MyMetadataName\"\n }\n}"},{"id":"043088b2-9edc-4be0-9624-7314c0299655","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to return."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"4880ddd5-b5ed-49af-b19a-8a0915f65166","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to return."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"7b7e2df9-d14f-45f4-987e-ad5330c4bef8","name":"Returned if the asset or property is not found or the user does not have permission to see the asset.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to return."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"47df8eaa-0731-4dc2-b422-77bd37d7dbbb","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to return."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"905affdc-fed2-4270-ac40-aaa25906a426","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to get metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to return."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"24038f69-661a-46fe-b28c-445d30cea445"},{"name":"Set asset metadata.","id":"2dcaaade-1118-4240-818d-433dfd126f14","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    \"commodo ut Duis ut nostrud\",\n    \"proident am\"\n]","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","description":"<p>Sets the value of an asset's metadata. If the metadata name doesn't exist it is created. If the asset metadata does not exist it is added against the asset. If it exists the value is updated.</p>\n","urlObject":{"path":["api","v1","assets",":assetId","metadata",":name"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"8bf3920e-3f96-4cbe-a7b9-ff9a5f729fd8","description":{"content":"<p>(Required) The id of the asset to set metadata for.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"},{"id":"19de8385-a914-4e3a-b6b1-2952fd2214f6","description":{"content":"<p>(Required) The name of metadata to set.</p>\n","type":"text/plain"},"type":"any","value":"My Metadata Name","key":"name"}]}},"response":[{"id":"8b754ff2-f154-48ee-a74e-ab5a480de45d","name":"Returned if the asset metadata is updated.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"[\n    \"consequat magna sit Excepteur\",\n    \"officia exercitation ad Duis Ut\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to set."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"95512586-cef0-4f55-af3d-00412772ad8a","name":"Returned if the asset metadata or metadata name is created.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"[\n    \"consequat magna sit Excepteur\",\n    \"officia exercitation ad Duis Ut\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to set."}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"feaa6520-76cb-4394-acfe-10f6a2c456c5","name":"Invalid request parameters.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"[\n    \"consequat magna sit Excepteur\",\n    \"officia exercitation ad Duis Ut\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to set."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"1db23c2d-2017-4f1e-b38e-f7554a50fcbd","name":"The request is unauthorised.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"[\n    \"consequat magna sit Excepteur\",\n    \"officia exercitation ad Duis Ut\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to set."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"7d51fae3-62c0-4667-94ca-b94090d0c53a","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"[\n    \"consequat magna sit Excepteur\",\n    \"officia exercitation ad Duis Ut\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to set."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"dbd8e127-52ba-4701-945c-56278b639338","name":"Returned if the asset is not found or the user does not have permission to edit the asset.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"[\n    \"consequat magna sit Excepteur\",\n    \"officia exercitation ad Duis Ut\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to set."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"ca947f29-6041-4ce7-a3c6-b76d9dff41d7","name":"An internal server error occurred.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"[\n    \"consequat magna sit Excepteur\",\n    \"officia exercitation ad Duis Ut\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to set."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"faa385c3-ab12-4427-ae41-66aa4f0298ac","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"[\n    \"consequat magna sit Excepteur\",\n    \"officia exercitation ad Duis Ut\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to set."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"2dcaaade-1118-4240-818d-433dfd126f14"},{"name":"Delete asset metadata.","id":"9360d70c-9e7e-47e3-89ea-98400da89d1c","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"DELETE","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","description":"<p>Deletes an assets's metadata.</p>\n","urlObject":{"path":["api","v1","assets",":assetId","metadata",":name"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"f54da474-a11f-4edf-8735-9ed0a471d96c","description":{"content":"<p>(Required) The id of the asset to delete.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"},{"id":"ad342afe-ee78-451b-bf6f-413c0e537b7c","description":{"content":"<p>(Required) The name of metadata to delete.</p>\n","type":"text/plain"},"type":"any","value":"My Metadata Name","key":"name"}]}},"response":[{"id":"36eeeb6d-1723-4480-8d3e-f9ee2e25d930","name":"The asset metadata was deleted successfully.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to delete."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"44d3f4cd-65d6-4f0d-839f-04c6ccf8d7ad","name":"The request is unauthorised.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to delete."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"cd2143c4-d7cc-4043-b557-6f1d71ba32d5","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to delete."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"41aa4dde-d762-41c7-a3cd-b23f052e7feb","name":"Returned if the asset or property is not found or the user does not have permission to see the asset.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to delete."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"4ded371d-03d2-4556-86c5-2b49fe0a3a7b","name":"An internal server error occurred.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to delete."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"27db46bc-7967-4019-841b-21b86f936052","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata",":name"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to delete."},{"key":"name","value":"My Metadata Name","description":"(Required) The name of metadata to delete."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"9360d70c-9e7e-47e3-89ea-98400da89d1c"},{"name":"Set multiple asset metadata.","id":"cdf53531-718f-4da7-ae88-f22b4c09e5fd","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"MyMetadataName1\": [\n        \"value1\",\n        \"value2\"\n    ],\n    \"MyMetadataName2\": [\n        \"value3\",\n        \"value4\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata","description":"<p>Sets multiple asset metadata values. If the metadata names don't exist they will be created. If the asset metadata does not exist it is added against the asset. If it exists the value is updated.</p>\n","urlObject":{"path":["api","v1","assets",":assetId","metadata"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"8a2c5c2a-e410-4d87-abc6-08d52551e0ab","description":{"content":"<p>(Required) The id of the asset to set metadata for.</p>\n","type":"text/plain"},"type":"any","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","key":"assetId"}]}},"response":[{"id":"d4ceed6e-0af7-46d3-97d1-349895a3b2d0","name":"Returned if the asset metadata is updated.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"MyMetadataName1\": [\n        \"value1\",\n        \"value2\"\n    ],\n    \"MyMetadataName2\": [\n        \"value3\",\n        \"value4\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"5ea7943f-c0b5-48a1-94e1-61b515946de4","name":"Returned if the asset metadata or metadata name(s) is created.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"MyMetadataName1\": [\n        \"value1\",\n        \"value2\"\n    ],\n    \"MyMetadataName2\": [\n        \"value3\",\n        \"value4\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"5457aa3b-0550-41b2-81eb-447618e09785","name":"Invalid request parameters.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"MyMetadataName1\": [\n        \"value1\",\n        \"value2\"\n    ],\n    \"MyMetadataName2\": [\n        \"value3\",\n        \"value4\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"f661e272-b09f-48eb-b2e4-27d456a7fa8d","name":"The request is unauthorised.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"MyMetadataName1\": [\n        \"value1\",\n        \"value2\"\n    ],\n    \"MyMetadataName2\": [\n        \"value3\",\n        \"value4\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"481ba2da-dec0-4217-88d1-75d4636bf6fc","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"MyMetadataName1\": [\n        \"value1\",\n        \"value2\"\n    ],\n    \"MyMetadataName2\": [\n        \"value3\",\n        \"value4\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"071b0a1f-939a-407f-beab-862bf14ef789","name":"Returned if the asset is not found or the user does not have permission to edit the asset.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"MyMetadataName1\": [\n        \"value1\",\n        \"value2\"\n    ],\n    \"MyMetadataName2\": [\n        \"value3\",\n        \"value4\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"c642dddd-8ba3-4d3c-9344-c5b6ee2c4a73","name":"An internal server error occurred.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"MyMetadataName1\": [\n        \"value1\",\n        \"value2\"\n    ],\n    \"MyMetadataName2\": [\n        \"value3\",\n        \"value4\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"8ebb4490-2824-4880-9390-04a3c79b3227","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"MyMetadataName1\": [\n        \"value1\",\n        \"value2\"\n    ],\n    \"MyMetadataName2\": [\n        \"value3\",\n        \"value4\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/assets/:assetId/metadata","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","assets",":assetId","metadata"],"variable":[{"key":"assetId","value":"9c9acd36-cdbf-4689-a764-de845eec74c7","description":"(Required) The id of the asset to set metadata for."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"cdf53531-718f-4da7-ae88-f22b4c09e5fd"},{"name":"Create asset from file.","id":"6f23787a-e7c8-4740-b004-54e2200655e0","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"filePath\": \"\\\\\\\\myfileserver\\\\myvideofile.mpg\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    },\n    \"mediaStoreName\": \"XCHANGEMANAGER-INGEST-TO-CURATOR\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/files","description":"<p>Creates a new asset from a file.</p>\n","urlObject":{"path":["api","v1","assets","files"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"d8582cab-7a6f-4ac3-a8ba-db3775c11a2c","name":"The request to create an asset was submitted sucessfully. Follow the location link in the response to determine the status of the task and use Get task to obtain subsequent updates.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"filePath\": \"\\\\\\\\myfileserver\\\\myvideofile.mpg\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    },\n    \"mediaStoreName\": \"XCHANGEMANAGER-INGEST-TO-CURATOR\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/files"},"status":"Found","code":302,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"fda0490f-a738-4bc2-93d4-b6a31daa6d94","name":"Invalid request parameters.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"filePath\": \"\\\\\\\\myfileserver\\\\myvideofile.mpg\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    },\n    \"mediaStoreName\": \"XCHANGEMANAGER-INGEST-TO-CURATOR\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/files"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"cee9bce8-6f3a-44a0-9b04-1a91c275e3e6","name":"The request is unauthorised.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"filePath\": \"\\\\\\\\myfileserver\\\\myvideofile.mpg\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    },\n    \"mediaStoreName\": \"XCHANGEMANAGER-INGEST-TO-CURATOR\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/files"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"7ec4c171-6a3b-4afc-9250-f3277a95c853","name":"The request is forbidden. Required scopes: Curator.ProcessEngine.API","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"filePath\": \"\\\\\\\\myfileserver\\\\myvideofile.mpg\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    },\n    \"mediaStoreName\": \"XCHANGEMANAGER-INGEST-TO-CURATOR\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/files"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"db874e02-675b-4e49-9b05-e62968d9ca40","name":"An internal server error occurred.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"filePath\": \"\\\\\\\\myfileserver\\\\myvideofile.mpg\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    },\n    \"mediaStoreName\": \"XCHANGEMANAGER-INGEST-TO-CURATOR\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/files"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"d4f98879-f6ed-449f-bf2c-080963382dbe","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"filePath\": \"\\\\\\\\myfileserver\\\\myvideofile.mpg\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    },\n    \"mediaStoreName\": \"XCHANGEMANAGER-INGEST-TO-CURATOR\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/files"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"6f23787a-e7c8-4740-b004-54e2200655e0"},{"name":"Create placeholder asset.","id":"7a207e3b-9841-41d3-8374-c29cea6bacfd","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"assetType\": \"Media\",\n    \"mediaStoreName\": \"FILEINGEST-METADATAIMPORT\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/placeholders","description":"<p>Creates a new placeholder asset.</p>\n","urlObject":{"path":["api","v1","assets","placeholders"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"5fd740b6-ada7-4571-9af6-bc87194a6b4b","name":"The request to create a placeholder asset was submitted sucessfully. Follow the location link in the response to determine the status of the task and use Get task to obtain subsequent updates.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"assetType\": \"Media\",\n    \"mediaStoreName\": \"FILEINGEST-METADATAIMPORT\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/placeholders"},"status":"Found","code":302,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f1d9e1c1-9c00-4dac-9146-2da05e297c42","name":"Invalid request parameters.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"assetType\": \"Media\",\n    \"mediaStoreName\": \"FILEINGEST-METADATAIMPORT\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/placeholders"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"712c056e-2709-49b8-9014-e2046c4beb6c","name":"The request is unauthorised.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"assetType\": \"Media\",\n    \"mediaStoreName\": \"FILEINGEST-METADATAIMPORT\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/placeholders"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"908b71f7-c5d2-43cf-b159-f90d4e1d507a","name":"The request is forbidden. Required scopes: Curator.ProcessEngine.API","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"assetType\": \"Media\",\n    \"mediaStoreName\": \"FILEINGEST-METADATAIMPORT\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/placeholders"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"6fe0f133-5f9f-48b9-a2c7-47af2c54bccc","name":"An internal server error occurred.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"assetType\": \"Media\",\n    \"mediaStoreName\": \"FILEINGEST-METADATAIMPORT\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/placeholders"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"4356266d-5eb0-43d1-9921-509e6f7d8c49","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"assetType\": \"Media\",\n    \"mediaStoreName\": \"FILEINGEST-METADATAIMPORT\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/placeholders"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"7a207e3b-9841-41d3-8374-c29cea6bacfd"},{"name":"Create production asset.","id":"d9a63b55-2858-40fd-b06d-b97d29c4fdc0","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Production\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/productions","description":"<p>Creates a new production asset.</p>\n","urlObject":{"path":["api","v1","assets","productions"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"253f1bbf-2fc5-4f94-ac36-6ecc7d2b0a37","name":"The request to create a production asset was submitted sucessfully. Follow the location link in the response to determine the status of the task and use Get task to obtain subsequent updates.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Production\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/productions"},"status":"Found","code":302,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a0631a48-d6a9-4906-b440-e58961879ef9","name":"Invalid request parameters.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Production\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/productions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"0a6e20e1-0324-4e8c-8cf5-1701d2f67a96","name":"The request is unauthorised.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Production\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/productions"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"ab57b89b-8a95-4712-8778-7c023ae4290a","name":"The request is forbidden. Required scopes: Curator.ProcessEngine.API","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Production\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/productions"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"ed0dfd4b-95e7-4f64-afcc-de3c950e481e","name":"An internal server error occurred.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Production\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/productions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"c4bae4f7-469b-4984-978e-d5caf0c4c1df","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Production\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"metadata\": {\n        \"MyMetadataName\": \"MyMetadataValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/productions"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"d9a63b55-2858-40fd-b06d-b97d29c4fdc0"},{"name":"Send to.","id":"7d6af6e8-36ba-416a-82f5-cc4dd4ac4a4d","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"assetIds\": [\n        \"2e843acd-30ab-4885-b08c-8cebd1b83117\"\n    ],\n    \"mediaStoreNames\": [\n        \"S3-HI-RES\"\n    ],\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/sendto","urlObject":{"path":["api","v1","assets","sendto"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"cd5de380-e4af-445e-a0b5-c03a863f4338","name":"The request to create a send to was submitted sucessfully. Follow the location link in the response to determine the status of the task and use Get task to obtain subsequent updates.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"assetIds\": [\n        \"2e843acd-30ab-4885-b08c-8cebd1b83117\"\n    ],\n    \"mediaStoreNames\": [\n        \"S3-HI-RES\"\n    ],\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/sendto"},"status":"Found","code":302,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a1532791-4af7-4751-82b7-ba12bb827c48","name":"Invalid request parameters.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"assetIds\": [\n        \"2e843acd-30ab-4885-b08c-8cebd1b83117\"\n    ],\n    \"mediaStoreNames\": [\n        \"S3-HI-RES\"\n    ],\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/sendto"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"5a507315-557e-4f15-b2ee-90c86b70b249","name":"The request is unauthorised.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"assetIds\": [\n        \"2e843acd-30ab-4885-b08c-8cebd1b83117\"\n    ],\n    \"mediaStoreNames\": [\n        \"S3-HI-RES\"\n    ],\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/sendto"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"6ed2b6bf-5f1d-4383-ba22-93ebbfc4aafd","name":"The request is forbidden. Required scopes: Curator.ProcessEngine.API","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"assetIds\": [\n        \"2e843acd-30ab-4885-b08c-8cebd1b83117\"\n    ],\n    \"mediaStoreNames\": [\n        \"S3-HI-RES\"\n    ],\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/sendto"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"b921f229-4022-47fd-bd77-11c4befe79f1","name":"An internal server error occurred.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"assetIds\": [\n        \"2e843acd-30ab-4885-b08c-8cebd1b83117\"\n    ],\n    \"mediaStoreNames\": [\n        \"S3-HI-RES\"\n    ],\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/sendto"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"5b585a37-1a7c-4377-a65e-658d3cd37c8e","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"assetIds\": [\n        \"2e843acd-30ab-4885-b08c-8cebd1b83117\"\n    ],\n    \"mediaStoreNames\": [\n        \"S3-HI-RES\"\n    ],\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/sendto"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"7d6af6e8-36ba-416a-82f5-cc4dd4ac4a4d"},{"name":"Create asset from upload.","id":"73b7f25e-5fe2-47a3-837f-199477a0c54f","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"<p>(Required) The actual file data.</p>\n","value":null},{"key":"name","value":"My Asset","type":"text","description":"<p>The name to give the asset. If not provided, the filename without extension is used.</p>\n"},{"key":"folderPath","value":"ad nostrud dolore incididunt esse","type":"text","description":"<p>The full virtual Curator folder path to create the asset in if FolderId is not specified.</p>\n"},{"key":"folderId","value":"ff984370-388e-467d-6fd9-3910f045d836","type":"text","description":"<p>The Curator folder id to create the asset in if FolderPath is not specified.</p>\n"},{"key":"metadataNames","value":"[\"quis \",\"ullamco ea culpa\"]","type":"text","description":"<p>Optional list of metadata names to add to the asset.</p>\n"},{"key":"metadataValues","value":"[\"mollit Ut cupidatat\",\"esse re\"]","type":"text","description":"<p>Optional list of metadata values to add to the asset.</p>\n"},{"key":"storeId","value":"-45718721","type":"text","description":"<p>An optional store id to force the upload into a specific store.</p>\n"},{"key":"labels","value":"[\"irure magna\",\"deserunt adipisicing\"]","type":"text","description":"<p>An optional list of labels to attach to the file.</p>\n"},{"key":"mediaStoreName","value":"nostrud sunt voluptate tempor reprehenderit","type":"text","description":"<p>An optional media store name to use when uploading a file.</p>\n"}]},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload","description":"<p>Uploads a file, stores the file and creates an asset from it.</p>\n","urlObject":{"path":["api","v1","assets","upload"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"46342068-6b56-4bba-9f51-4c9a015fac1a","name":"The file was sucessfully uploaded and asset created. The location header in the response will contain the URI to the asset.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) The actual file data.","key":"file","type":"file"},{"description":"The name to give the asset. If not provided, the filename without extension is used.","key":"name","value":"My Asset","type":"text"},{"description":"The full virtual Curator folder path to create the asset in if FolderId is not specified.","key":"folderPath","value":"eu minim amet in quis","type":"text"},{"description":"The Curator folder id to create the asset in if FolderPath is not specified.","key":"folderId","value":"urn:uuid:f0d8025a-2343-dde0-b0ee-3ef31f93a572","type":"text"},{"description":"Optional list of metadata names to add to the asset.","key":"metadataNames","value":"[\"est dolore proident\",\"labore\"]","type":"text"},{"description":"Optional list of metadata values to add to the asset.","key":"metadataValues","value":"[\"eu in est\",\"consectetur dolore\"]","type":"text"},{"description":"An optional store id to force the upload into a specific store.","key":"storeId","value":"4638409","type":"text"},{"description":"An optional list of labels to attach to the file.","key":"labels","value":"[\"esse id sit officia nulla\",\"laborum proident\"]","type":"text"},{"description":"An optional media store name to use when uploading a file.","key":"mediaStoreName","value":"in","type":"text"}]},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a4baf4d0-a349-41d2-94a9-be761124ef7e","name":"Invalid request parameters.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) The actual file data.","key":"file","type":"file"},{"description":"The name to give the asset. If not provided, the filename without extension is used.","key":"name","value":"My Asset","type":"text"},{"description":"The full virtual Curator folder path to create the asset in if FolderId is not specified.","key":"folderPath","value":"eu minim amet in quis","type":"text"},{"description":"The Curator folder id to create the asset in if FolderPath is not specified.","key":"folderId","value":"urn:uuid:f0d8025a-2343-dde0-b0ee-3ef31f93a572","type":"text"},{"description":"Optional list of metadata names to add to the asset.","key":"metadataNames","value":"[\"est dolore proident\",\"labore\"]","type":"text"},{"description":"Optional list of metadata values to add to the asset.","key":"metadataValues","value":"[\"eu in est\",\"consectetur dolore\"]","type":"text"},{"description":"An optional store id to force the upload into a specific store.","key":"storeId","value":"4638409","type":"text"},{"description":"An optional list of labels to attach to the file.","key":"labels","value":"[\"esse id sit officia nulla\",\"laborum proident\"]","type":"text"},{"description":"An optional media store name to use when uploading a file.","key":"mediaStoreName","value":"in","type":"text"}]},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"94a1f7a2-37bc-4db4-bf73-130f463e8602","name":"The request is unauthorised.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) The actual file data.","key":"file","type":"file"},{"description":"The name to give the asset. If not provided, the filename without extension is used.","key":"name","value":"My Asset","type":"text"},{"description":"The full virtual Curator folder path to create the asset in if FolderId is not specified.","key":"folderPath","value":"eu minim amet in quis","type":"text"},{"description":"The Curator folder id to create the asset in if FolderPath is not specified.","key":"folderId","value":"urn:uuid:f0d8025a-2343-dde0-b0ee-3ef31f93a572","type":"text"},{"description":"Optional list of metadata names to add to the asset.","key":"metadataNames","value":"[\"est dolore proident\",\"labore\"]","type":"text"},{"description":"Optional list of metadata values to add to the asset.","key":"metadataValues","value":"[\"eu in est\",\"consectetur dolore\"]","type":"text"},{"description":"An optional store id to force the upload into a specific store.","key":"storeId","value":"4638409","type":"text"},{"description":"An optional list of labels to attach to the file.","key":"labels","value":"[\"esse id sit officia nulla\",\"laborum proident\"]","type":"text"},{"description":"An optional media store name to use when uploading a file.","key":"mediaStoreName","value":"in","type":"text"}]},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"49d2541a-f54f-43d6-9202-bd60ebc7ee8f","name":"The request is forbidden. Required scopes: Curator.ProcessEngine.API, Curator.FileService.API, Curator.Server.API","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) The actual file data.","key":"file","type":"file"},{"description":"The name to give the asset. If not provided, the filename without extension is used.","key":"name","value":"My Asset","type":"text"},{"description":"The full virtual Curator folder path to create the asset in if FolderId is not specified.","key":"folderPath","value":"eu minim amet in quis","type":"text"},{"description":"The Curator folder id to create the asset in if FolderPath is not specified.","key":"folderId","value":"urn:uuid:f0d8025a-2343-dde0-b0ee-3ef31f93a572","type":"text"},{"description":"Optional list of metadata names to add to the asset.","key":"metadataNames","value":"[\"est dolore proident\",\"labore\"]","type":"text"},{"description":"Optional list of metadata values to add to the asset.","key":"metadataValues","value":"[\"eu in est\",\"consectetur dolore\"]","type":"text"},{"description":"An optional store id to force the upload into a specific store.","key":"storeId","value":"4638409","type":"text"},{"description":"An optional list of labels to attach to the file.","key":"labels","value":"[\"esse id sit officia nulla\",\"laborum proident\"]","type":"text"},{"description":"An optional media store name to use when uploading a file.","key":"mediaStoreName","value":"in","type":"text"}]},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"4ace43c1-d8e2-469a-b1b6-461844c9ee77","name":"An internal server error occurred.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) The actual file data.","key":"file","type":"file"},{"description":"The name to give the asset. If not provided, the filename without extension is used.","key":"name","value":"My Asset","type":"text"},{"description":"The full virtual Curator folder path to create the asset in if FolderId is not specified.","key":"folderPath","value":"eu minim amet in quis","type":"text"},{"description":"The Curator folder id to create the asset in if FolderPath is not specified.","key":"folderId","value":"urn:uuid:f0d8025a-2343-dde0-b0ee-3ef31f93a572","type":"text"},{"description":"Optional list of metadata names to add to the asset.","key":"metadataNames","value":"[\"est dolore proident\",\"labore\"]","type":"text"},{"description":"Optional list of metadata values to add to the asset.","key":"metadataValues","value":"[\"eu in est\",\"consectetur dolore\"]","type":"text"},{"description":"An optional store id to force the upload into a specific store.","key":"storeId","value":"4638409","type":"text"},{"description":"An optional list of labels to attach to the file.","key":"labels","value":"[\"esse id sit officia nulla\",\"laborum proident\"]","type":"text"},{"description":"An optional media store name to use when uploading a file.","key":"mediaStoreName","value":"in","type":"text"}]},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"1ae6ee67-03e7-4b8c-8be1-eda97b72aecd","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) The actual file data.","key":"file","type":"file"},{"description":"The name to give the asset. If not provided, the filename without extension is used.","key":"name","value":"My Asset","type":"text"},{"description":"The full virtual Curator folder path to create the asset in if FolderId is not specified.","key":"folderPath","value":"eu minim amet in quis","type":"text"},{"description":"The Curator folder id to create the asset in if FolderPath is not specified.","key":"folderId","value":"urn:uuid:f0d8025a-2343-dde0-b0ee-3ef31f93a572","type":"text"},{"description":"Optional list of metadata names to add to the asset.","key":"metadataNames","value":"[\"est dolore proident\",\"labore\"]","type":"text"},{"description":"Optional list of metadata values to add to the asset.","key":"metadataValues","value":"[\"eu in est\",\"consectetur dolore\"]","type":"text"},{"description":"An optional store id to force the upload into a specific store.","key":"storeId","value":"4638409","type":"text"},{"description":"An optional list of labels to attach to the file.","key":"labels","value":"[\"esse id sit officia nulla\",\"laborum proident\"]","type":"text"},{"description":"An optional media store name to use when uploading a file.","key":"mediaStoreName","value":"in","type":"text"}]},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"73b7f25e-5fe2-47a3-837f-199477a0c54f"},{"name":"Create placeholder asset for an upload.","id":"b22f5b27-648f-45b4-9e3f-97fc0e1a4c10","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"contentType\": \"image/jpeg\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"folderId\": null,\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload/placeholder","description":"<p>Before uploading a file this request can be used to create a placeholder asset.</p>\n","urlObject":{"path":["api","v1","assets","upload","placeholder"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"9d1c7dfc-bcfa-46ed-ac3b-913e29e69b18","name":"The placeholder asset created. The location header in the response will contain the URI to the asset.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"contentType\": \"image/jpeg\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"folderId\": null,\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload/placeholder"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c3c58fba-860f-4f74-9335-e6d5157d1d12","name":"Invalid request parameters.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"contentType\": \"image/jpeg\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"folderId\": null,\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload/placeholder"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"b34aa0d1-3fd7-4a89-bb04-1884336b5fb3","name":"The request is unauthorised.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"contentType\": \"image/jpeg\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"folderId\": null,\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload/placeholder"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"e279d8fb-28c7-4a48-ac89-240aada03cde","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"contentType\": \"image/jpeg\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"folderId\": null,\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload/placeholder"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"1ea29286-ee25-4682-8489-2a6751529c14","name":"An internal server error occurred.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"contentType\": \"image/jpeg\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"folderId\": null,\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload/placeholder"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"6aa352d3-707a-49eb-8876-b56be6cfe519","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My Asset\",\n    \"contentType\": \"image/jpeg\",\n    \"folderPath\": \"Library\\\\Ingest\",\n    \"folderId\": null,\n    \"metadata\": {\n        \"MyMetadataName\": [\n            \"MyMetadataValue\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.ipv.com/CuratorGateway/api/v1/assets/upload/placeholder"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"b22f5b27-648f-45b4-9e3f-97fc0e1a4c10"}],"id":"e595216e-59bb-449c-927e-117b2f16ceab","_postman_id":"e595216e-59bb-449c-927e-117b2f16ceab","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Client Links","item":[{"name":"Get client link.","id":"d4a8d4d5-3592-4158-9ec4-c300669cdc6c","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/:linkId","description":"<p>Returns a client.</p>\n","urlObject":{"path":["api","v1","clients","links",":linkId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"4268c1d2-9ceb-4f9c-a304-c32ebdb9c707","description":{"content":"<p>(Required) The id of the client link to get.</p>\n","type":"text/plain"},"type":"any","value":"12","key":"linkId"}]}},"response":[{"id":"09b16f3d-8b49-4d18-bb1f-6032bc1ff274","name":"The client link.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/:linkId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients","links",":linkId"],"variable":[{"key":"linkId","value":"12","description":"(Required) The id of the client link to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/12\",\n \"id\": 12,\n \"displayName\": \"Jobs\",\n \"description\": \"The list of Device Director jobs.\",\n \"target\": \"blank\",\n \"uriTemplate\": {\n  \"href\": \"https://dev.ipv.com/DeviceDirector/Jobs/List\"\n },\n \"roles\": [\n  \"ADMIN\"\n ]\n}"},{"id":"8833adaa-e713-4d06-b7d4-77f03aad824d","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/:linkId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients","links",":linkId"],"variable":[{"key":"linkId","value":"12","description":"(Required) The id of the client link to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"176a47f6-a9a2-472e-baea-abfea7dd587f","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/:linkId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients","links",":linkId"],"variable":[{"key":"linkId","value":"12","description":"(Required) The id of the client link to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"ff12170e-42f1-4bdd-a84f-9f181d42a5ba","name":"The client link was not found.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/:linkId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients","links",":linkId"],"variable":[{"key":"linkId","value":"12","description":"(Required) The id of the client link to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"c2d79177-cebd-4eae-ba6d-f296c3a48d68","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/:linkId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients","links",":linkId"],"variable":[{"key":"linkId","value":"12","description":"(Required) The id of the client link to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"d4a8d4d5-3592-4158-9ec4-c300669cdc6c"}],"id":"26c88e14-3db5-45ea-bd7c-e2caa2f61827","_postman_id":"26c88e14-3db5-45ea-bd7c-e2caa2f61827","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Clients","item":[{"name":"Get clients.","id":"ff3e0b24-a015-4134-9fbd-9c129e8d5448","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/clients?offset=1&limit=50","description":"<p>Returns a list of client applications.</p>\n","urlObject":{"path":["api","v1","clients"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"b443612c-1e30-4946-b5a8-47caaab36af3","name":"The list of clients is returned.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/383603d4-f0f6-4e69-973f-46cfcc3944a9\",\n  \"id\": \"383603d4-f0f6-4e69-973f-46cfcc3944a9\",\n  \"displayName\": \"Curator Clip Link\",\n  \"description\": \"Search, find and share content.\",\n  \"rootUri\": {\n   \"href\": \"https://dev.ipv.com/CuratorClipLink\"\n  },\n  \"launchUriTemplate\": {\n   \"href\": \"https://dev.ipv.com/CuratorClipLink?assetFilter=159&fs=true\"\n  },\n  \"grantTypes\": [\n   \"client_credentials\",\n   \"hybrid\"\n  ],\n  \"enabled\": true,\n  \"requireConsent\": false,\n  \"accessTokenLifetime\": 3600,\n  \"links\": [\n   {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/12\",\n    \"id\": 12,\n    \"displayName\": \"Filters\",\n    \"description\": \"The filters view.\",\n    \"target\": \"blank\",\n    \"uriTemplate\": {\n     \"href\": \"https://dev.ipv.com/CuratorClipLink?assetFilter=479&fs=true\"\n    },\n    \"roles\": []\n   }\n  ]\n }\n]"},{"id":"534c7a1d-58c1-49d2-88de-ceeb7b7e5cd3","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"629e2262-82c4-4914-acbe-3b9d5140e11b","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"76204278-b1f0-4c78-969e-9c0668ca918b","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"1a713adb-5fc2-465b-81db-10228fa17666","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"ff3e0b24-a015-4134-9fbd-9c129e8d5448"},{"name":"Get client.","id":"f7a55335-f8eb-4c59-a1b3-ff6c4fcb5504","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","description":"<p>Returns a client.</p>\n","urlObject":{"path":["api","v1","clients",":clientId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"67918320-4eb6-4c59-be78-a4f7545bb889","description":{"content":"<p>(Required) The id of the client to get.</p>\n","type":"text/plain"},"type":"any","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","key":"clientId"}]}},"response":[{"id":"d675420c-c764-4771-b710-ae98e75c4442","name":"The client.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/5a324d20-9ce4-499e-8a4c-48e4748a1bee\",\n \"id\": \"5a324d20-9ce4-499e-8a4c-48e4748a1bee\",\n \"displayName\": \"Curator Clip Link\",\n \"description\": \"Search, find and share content.\",\n \"rootUri\": {\n  \"href\": \"https://dev.ipv.com/CuratorClipLink\"\n },\n \"launchUriTemplate\": {\n  \"href\": \"https://dev.ipv.com/CuratorClipLink?assetFilter=159&fs=true\"\n },\n \"grantTypes\": [\n  \"client_credentials\",\n  \"hybrid\"\n ],\n \"enabled\": true,\n \"requireConsent\": false,\n \"accessTokenLifetime\": 3600,\n \"links\": [\n  {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/12\",\n   \"id\": 12,\n   \"displayName\": \"Filters\",\n   \"description\": \"The filters view.\",\n   \"target\": \"blank\",\n   \"uriTemplate\": {\n    \"href\": \"https://dev.ipv.com/CuratorClipLink?assetFilter=479&fs=true\"\n   },\n   \"roles\": []\n  }\n ]\n}"},{"id":"ac209391-651d-43b2-8012-9a83124e1d58","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"a0c967d2-ef0d-463f-8158-fc60f61e8249","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"5c9bfc94-19c7-4377-b0f9-0313925bcdb0","name":"The client was not found.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"1bf8c009-c3e5-427b-97a6-c65976d1f357","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"f7a55335-f8eb-4c59-a1b3-ff6c4fcb5504"},{"name":"Does client exist?","id":"2fef4936-4d21-472f-9d17-e4e0a27ca298","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"HEAD","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","description":"<p>Determines if a client with the given id exists.</p>\n","urlObject":{"path":["api","v1","clients",":clientId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"878f2991-c502-4326-9c9b-08ad07eda58c","description":{"content":"<p>(Required) The id of the client to check if exists.</p>\n","type":"text/plain"},"type":"any","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","key":"clientId"}]}},"response":[{"id":"31739ef2-8f13-4d5e-adac-a033f770e119","name":"The client exists.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to check if exists."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"464abaec-d39a-427f-b63b-a142709c2ec2","name":"The request is unauthorised.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to check if exists."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"3343d65a-20c1-4852-940f-a6008d993666","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to check if exists."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"e084d5df-eac6-464f-8f5e-c4ff3a936de1","name":"The client does not exist.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to check if exists."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"7ae52bb3-2d04-4695-8670-84a8d1d776d2","name":"An internal server error occurred.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/clients/:clientId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","clients",":clientId"],"variable":[{"key":"clientId","value":"52e29e3a-62f8-4e02-b88e-fcef2dea5cf4","description":"(Required) The id of the client to check if exists."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"2fef4936-4d21-472f-9d17-e4e0a27ca298"}],"id":"eec3dfef-8fda-4351-9634-7f88530e039d","_postman_id":"eec3dfef-8fda-4351-9634-7f88530e039d","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Metadata Names","item":[{"name":"Get metadata names.","id":"ad7b68d2-6870-4e88-9ec0-729b18052f19","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames?offset=1&limit=50","description":"<p>Returns a list of metadata names.</p>\n","urlObject":{"path":["api","v1","metadatanames"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"e1e89b12-7b69-44e1-b5e7-8f65f16a5e42","name":"The list of metadata names is returned.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/MyMetadataView\",\n  \"name\": \"MyMetadataView\",\n  \"displayName\": \"My Metadata View\",\n  \"description\": \"A metadata view for a test client.\"\n }\n]"},{"id":"024dd9b7-269f-480e-9317-e9e4a7d766d3","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"d31c0cca-36bf-46c0-ba14-2f9f84df8558","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"f1207796-495a-4896-ac22-2de9a17961ea","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"8941c40c-75d9-4b41-86f4-6600b1ec74f3","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"54715aa1-0d3f-4410-9b8a-84fc75208061","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"ad7b68d2-6870-4e88-9ec0-729b18052f19"},{"name":"Get metadata name.","id":"591b0aa5-01dd-4e59-a4c3-c61c51083556","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","description":"<p>Gets a single metadata name by its name.</p>\n","urlObject":{"path":["api","v1","metadatanames",":name"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"623254cd-7a34-4263-b787-7eacb18f36bd","description":{"content":"<p>(Required) The name of the metadata name to get.</p>\n","type":"text/plain"},"type":"any","value":"My Metadata Name","key":"name"}]}},"response":[{"id":"f54a2767-1563-438b-98e9-8b384de9c7de","name":"The metadata name.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/MyMetadataName\",\n \"name\": \"MyMetadataName\",\n \"displayName\": \"My Metadata Name\",\n \"assetTypes\": [\n  \"Media\"\n ],\n \"type\": \"Text\",\n \"isReadonly\": false,\n \"isStatic\": false,\n \"multiValued\": true,\n \"pattern\": null\n}"},{"id":"20cadc94-5b7d-4c81-a0fb-b8f353ae2653","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"23abfb24-c24b-4e66-a885-e2c88436d8ed","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"7545dcba-7e0c-4c27-a5ac-a5572e794f39","name":"The metadata name was not found.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"72486ae4-d32c-4685-a750-b53effe045fc","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"20c0968e-75e8-4646-9e12-32a4a6d33d79","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"591b0aa5-01dd-4e59-a4c3-c61c51083556"},{"name":"Does metadata name exist?","id":"537598bd-7446-4660-937e-93c5be6e7bbb","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"HEAD","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","description":"<p>Used to determine if a metadata name with the specified name exists.</p>\n","urlObject":{"path":["api","v1","metadatanames",":name"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"dba48f34-8c89-44b8-b95b-10da584610c0","description":{"content":"<p>(Required) The name of the metadata name to get.</p>\n","type":"text/plain"},"type":"any","value":"My Metadata Name","key":"name"}]}},"response":[{"id":"df6bd85b-034d-4434-ad44-56fa64c9bc56","name":"The metadata name exists.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"45dad937-1ccf-4aa8-a7a3-4c987f5715a0","name":"The request is unauthorised.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"39e87db8-c078-402d-9047-b6ea8d83fc2c","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"b5568248-f24b-484e-a60a-e672d023ae40","name":"The metadata name does not exist.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"1cc3ecc2-f3e6-4ca3-9066-397435b13227","name":"An internal server error occurred.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"83ee5194-7f85-431a-bdb0-aa93aa9a9b4e","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadatanames",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata name to get."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"537598bd-7446-4660-937e-93c5be6e7bbb"}],"id":"6c4b3532-7a11-4c7e-bc26-eb6d084f30af","_postman_id":"6c4b3532-7a11-4c7e-bc26-eb6d084f30af","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Metadata Views","item":[{"name":"Get metadata views.","id":"5a95398f-87f2-412b-b27e-7363cd99ffe2","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews?offset=1&limit=50","description":"<p>Returns a list of metadata views.</p>\n","urlObject":{"path":["api","v1","metadataviews"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"de078423-d5cd-4a41-9788-9337c5fac836","name":"The list of metadata views is returned.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/MyMetadataView\",\n  \"name\": \"MyMetadataView\",\n  \"displayName\": \"My Metadata View\",\n  \"description\": \"A metadata view for a test client.\"\n }\n]"},{"id":"de8bc341-3eaf-4b27-a2c4-1cec11023438","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"4e12da66-079d-4d61-898e-30c1b21a2b4e","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"52a2560e-f1ec-4247-991d-d96615fcb1c5","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"81b1e59b-27b7-49fe-abe7-234693ff2105","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"d250eabf-e897-4df1-84b2-647ff3d30ee8","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"5a95398f-87f2-412b-b27e-7363cd99ffe2"},{"name":"Get metadata view.","id":"0297134c-af06-4ac6-af09-18cedae5d65c","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","description":"<p>Gets a single metadata view by its name.</p>\n","urlObject":{"path":["api","v1","metadataviews",":name"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"60c8d0be-2ffd-4d95-9d83-82386cb6ece5","description":{"content":"<p>(Required) The name of the metadata view to get.</p>\n","type":"text/plain"},"type":"any","value":"My Metadata Name","key":"name"}]}},"response":[{"id":"920cba65-a15e-466b-a20a-b58465cff17e","name":"The metadata view.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/MyMetadataView\",\n \"name\": \"MyMetadataView\",\n \"displayName\": \"My Metadata View\",\n \"description\": \"A metadata view for a test client.\"\n}"},{"id":"d99e4b03-7218-470b-b54d-f4d059c8040d","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"01f75220-51b7-4ef8-ba13-86be6f348ae3","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"8ff218c4-950c-4c9e-a625-d2aa6d7f6964","name":"The metadata view was not found.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"4ddfe348-43ae-4ab6-8bb4-ebd28c08514d","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"e37d234b-c91c-4d64-a5a2-6de38f75fd8c","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"0297134c-af06-4ac6-af09-18cedae5d65c"},{"name":"Does metadata view exist?","id":"ab88daba-8a65-4c32-bfe6-be561b14ac21","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"HEAD","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","description":"<p>Used to determine if a metadata view with the specified name exists.</p>\n","urlObject":{"path":["api","v1","metadataviews",":name"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"ffc77bd8-5945-4b32-a290-977972f530e6","description":{"content":"<p>(Required) The name of the metadata view to get.</p>\n","type":"text/plain"},"type":"any","value":"My Metadata Name","key":"name"}]}},"response":[{"id":"e0689dba-98dd-48c7-87ab-709bb4061339","name":"The metadata view exists.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"acc885b0-8438-4b76-a2c6-eb4429e9b7ef","name":"The request is unauthorised.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"001b5d24-db80-47dc-b1c6-987dd6ddff5d","name":"The request is forbidden. Required scopes: Curator.Server.API","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"3dde2bb7-d141-4c9b-934c-d44b2767717e","name":"The metadata view does not exist.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"b9870fab-2a5e-4676-bb96-c484f816ed71","name":"An internal server error occurred.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"bcf23d77-2318-4a0f-8fbe-b46905340006","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/metadataviews/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","metadataviews",":name"],"variable":[{"key":"name","value":"My Metadata Name","description":"(Required) The name of the metadata view to get."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"ab88daba-8a65-4c32-bfe6-be561b14ac21"}],"id":"60986503-835a-4a01-b920-bd015ad5c378","_postman_id":"60986503-835a-4a01-b920-bd015ad5c378","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Myself","item":[{"name":"Get current user.","id":"37288431-8b36-409d-9ee9-be7260d82be4","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/myself","description":"<p>Returns details for the current user as obtained from the specified authorisation token.</p>\n","urlObject":{"path":["api","v1","myself"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"a657ebb8-fe7d-46a1-881b-1836b7209caf","name":"Returned if the request is successful.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":"https://dev.ipv.com/CuratorGateway/api/v1/myself"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/myself\",\n \"userName\": \"ametcalfe@ipv.com\",\n \"displayName\": \"Alex Metcalfe\",\n \"email\": \"ametcalfe@ipv.com\",\n \"id\": \"3ef22695-cb8f-40ce-b8e1-592d499a04c3\",\n \"createdDateTime\": \"0001-01-01T00:00:00\",\n \"updatedDateTime\": \"0001-01-01T00:00:00\",\n \"assetActivity\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/myself/activity\"\n },\n \"clients\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/myself/clients\"\n },\n \"avatar\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/myself/avatar\"\n }\n}"},{"id":"10a7e022-1f84-4302-83e0-f15d787fb8a4","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":"https://dev.ipv.com/CuratorGateway/api/v1/myself"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"ef1df3bc-b7d5-4ecf-8ebe-6cbd05d542ad","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":"https://dev.ipv.com/CuratorGateway/api/v1/myself"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"37288431-8b36-409d-9ee9-be7260d82be4"},{"name":"Get current users avatar.","id":"d9fd6e87-e908-4db6-b303-dae1f1ad50c7","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/myself/avatar?width=200&height=200","description":"<p>Returns the current users avatar.</p>\n","urlObject":{"path":["api","v1","myself","avatar"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>The width of avatar to return. The resized avatar will fit the bounds of the original in order to maintain the aspect ratio. If not provided the original width is used.</p>\n","type":"text/plain"},"key":"width","value":"200"},{"description":{"content":"<p>The height of avatar to return. The resized avatar will fit the bounds of the original in order to maintain the aspect ratio. If not provided the original height is used.</p>\n","type":"text/plain"},"key":"height","value":"200"}],"variable":[]}},"response":[{"id":"a0398e1c-0ff5-4d50-9fb4-6ed27584d1b8","name":"Returned if the request is successful.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/avatar?width=200&height=200","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","avatar"],"query":[{"key":"width","value":"200"},{"key":"height","value":"200"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"af91a68b-64a3-449b-a1e0-1d308bc9d409","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/avatar?width=200&height=200","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","avatar"],"query":[{"key":"width","value":"200"},{"key":"height","value":"200"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"ebb6c3ff-6db6-4dd5-87fe-fd57c884cb24","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/avatar?width=200&height=200","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","avatar"],"query":[{"key":"width","value":"200"},{"key":"height","value":"200"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"6c2b2e4e-d47d-4d0d-87e2-e9e838a53ffc","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/avatar?width=200&height=200","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","avatar"],"query":[{"key":"width","value":"200"},{"key":"height","value":"200"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"d9fd6e87-e908-4db6-b303-dae1f1ad50c7"},{"name":"Get the current users clients.","id":"b3316344-0fd9-4dca-94fb-d7d2416231e8","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/myself/clients?launchPathTemplateFilters=cupidatat fugiat Excepteur&launchPathTemplateFilters=reprehenderit ut proident&offset=1&limit=50","description":"<p>Returns a list of clients that the current user is authorised to access based on their permission roles.</p>\n","urlObject":{"path":["api","v1","myself","clients"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>An optional list of values to filter the results based on their launch path template.\nIf the clients launch path template contains any of the specified values and it is within the paging parameters then it is returned.</p>\n","type":"text/plain"},"key":"launchPathTemplateFilters","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of values to filter the results based on their launch path template.\nIf the clients launch path template contains any of the specified values and it is within the paging parameters then it is returned.</p>\n","type":"text/plain"},"key":"launchPathTemplateFilters","value":"reprehenderit ut proident"},{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"c1716af0-6705-4aca-b6cb-79a87a7ebc6c","name":"The list of clients is returned.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/clients?launchPathTemplateFilters=consectetur culpa minim&launchPathTemplateFilters=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","clients"],"query":[{"key":"launchPathTemplateFilters","value":"consectetur culpa minim"},{"key":"launchPathTemplateFilters","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/35a30011-d6f7-4993-baca-eeef33b7047a\",\n  \"id\": \"35a30011-d6f7-4993-baca-eeef33b7047a\",\n  \"displayName\": \"Curator Clip Link\",\n  \"description\": \"Search, find and share content.\",\n  \"rootUri\": {\n   \"href\": \"https://dev.ipv.com/CuratorClipLink\"\n  },\n  \"launchUriTemplate\": {\n   \"href\": \"https://dev.ipv.com/CuratorClipLink?assetFilter=159&fs=true\"\n  },\n  \"grantTypes\": [\n   \"client_credentials\",\n   \"hybrid\"\n  ],\n  \"enabled\": true,\n  \"requireConsent\": false,\n  \"accessTokenLifetime\": 3600,\n  \"links\": [\n   {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/links/12\",\n    \"id\": 12,\n    \"displayName\": \"Filters\",\n    \"description\": \"The filters view.\",\n    \"target\": \"blank\",\n    \"uriTemplate\": {\n     \"href\": \"https://dev.ipv.com/CuratorClipLink?assetFilter=479&fs=true\"\n    },\n    \"roles\": []\n   }\n  ]\n }\n]"},{"id":"f1d92ac6-d9ed-4f63-9c96-ca45dc1e1974","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/clients?launchPathTemplateFilters=consectetur culpa minim&launchPathTemplateFilters=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","clients"],"query":[{"key":"launchPathTemplateFilters","value":"consectetur culpa minim"},{"key":"launchPathTemplateFilters","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"bf8b6e2e-86ee-4637-b34b-b486b460cf19","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/clients?launchPathTemplateFilters=consectetur culpa minim&launchPathTemplateFilters=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","clients"],"query":[{"key":"launchPathTemplateFilters","value":"consectetur culpa minim"},{"key":"launchPathTemplateFilters","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"69e2ccd2-4d6c-4a79-8b91-cf0d7886d250","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/clients?launchPathTemplateFilters=consectetur culpa minim&launchPathTemplateFilters=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","clients"],"query":[{"key":"launchPathTemplateFilters","value":"consectetur culpa minim"},{"key":"launchPathTemplateFilters","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"b3316344-0fd9-4dca-94fb-d7d2416231e8"},{"name":"Get the current users asset activity.","id":"c5fab063-8d90-4a57-81ec-43e48efe5472","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/myself/activity?assetIds=urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0&assetIds=urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad&groupByAsset.enabled=false&groupByAsset.offset=1&groupByAsset.limit=50&names=cupidatat fugiat Excepteur&names=reprehenderit ut proident&clientIds=urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0&clientIds=urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad&types=cupidatat fugiat Excepteur&types=reprehenderit ut proident&offset=1&limit=50","description":"<p>Returns activity details for the current user.</p>\n","urlObject":{"path":["api","v1","myself","activity"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>An optional list of asset ids to get activity for.</p>\n","type":"text/plain"},"key":"assetIds","value":"urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0"},{"description":{"content":"<p>An optional list of asset ids to get activity for.</p>\n","type":"text/plain"},"key":"assetIds","value":"urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad"},{"description":{"content":"<p>A value indicating whether to enable grouping for this type.</p>\n","type":"text/plain"},"key":"groupByAsset.enabled","value":"false"},{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"groupByAsset.offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"groupByAsset.limit","value":"50"},{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of metadata names to return. If not set, all metadata is returned.</p>\n","type":"text/plain"},"key":"names","value":"reprehenderit ut proident"},{"description":{"content":"<p>An optional list of clients ids to get activity for.</p>\n","type":"text/plain"},"key":"clientIds","value":"urn:uuid:9cfdd12c-aecf-e4bd-a9af-888f36747cf0"},{"description":{"content":"<p>An optional list of clients ids to get activity for.</p>\n","type":"text/plain"},"key":"clientIds","value":"urn:uuid:2a2cfe5c-0572-d239-e903-5a35817c07ad"},{"description":{"content":"<p>An optional list of activity types to return.</p>\n","type":"text/plain"},"key":"types","value":"cupidatat fugiat Excepteur"},{"description":{"content":"<p>An optional list of activity types to return.</p>\n","type":"text/plain"},"key":"types","value":"reprehenderit ut proident"},{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"3f9a8407-ba69-4e1e-9a38-12caed666ec1","name":"Returned if the request is successful.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"activity\": {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity\",\n  \"rel\": [\n   \"collection\"\n  ],\n  \"offset\": 10,\n  \"limit\": 1,\n  \"size\": 50,\n  \"first\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"previous\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?limit=1&offset=-9\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"next\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?limit=1&offset=11\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"last\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity?limit=1&offset=49\",\n   \"rel\": [\n    \"collection\"\n   ]\n  },\n  \"value\": [\n   {\n    \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/activity/100\",\n    \"asset\": {\n     \"activity\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/activity\"\n     },\n     \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a\",\n     \"Id\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Id\",\n      \"displayName\": \"Id\",\n      \"values\": [\n       \"5be52a09-e43f-4a48-b41b-5c33b95ee53a\"\n      ],\n      \"type\": \"Guid\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Id\"\n      }\n     },\n     \"Name\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Name\",\n      \"displayName\": \"Name\",\n      \"values\": [\n       \"My Asset\"\n      ],\n      \"type\": \"Text\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Name\"\n      }\n     },\n     \"Description\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/Description\",\n      \"displayName\": \"Description\",\n      \"values\": [\n       \"My Asset Description\"\n      ],\n      \"type\": \"Text\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/Description\"\n      }\n     },\n     \"FolderId\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/FolderId\",\n      \"displayName\": \"FolderId\",\n      \"values\": [\n       \"00000000-0000-0000-0000-000001162429\"\n      ],\n      \"type\": \"Guid\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/FolderId\"\n      }\n     },\n     \"AssetType\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/AssetType\",\n      \"displayName\": \"AssetType\",\n      \"values\": [\n       \"Media\"\n      ],\n      \"type\": \"Text\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/AssetType\"\n      }\n     },\n     \"ProxyExists\": {\n      \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/5be52a09-e43f-4a48-b41b-5c33b95ee53a/metadata/ProxyExists\",\n      \"displayName\": \"ProxyExists\",\n      \"values\": [\n       \"True\"\n      ],\n      \"type\": \"Boolean\",\n      \"name\": {\n       \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/metadatanames/ProxyExists\"\n      }\n     }\n    },\n    \"id\": 100,\n    \"clientName\": \"Curator Clip Link\",\n    \"client\": {\n     \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/clients/eefd9852-6177-4ce1-8060-0132dc7bd380\"\n    },\n    \"comment\": \"Updated the description on this asset.\",\n    \"dateTime\": \"2022-01-12T08:34:14.2165655Z\",\n    \"type\": \"UPDATED\",\n    \"username\": \"ametcalfe@ipv.com\",\n    \"user\": {\n     \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/users/446e2ae9-55ac-4326-9ce6-718d90278551\"\n    },\n    \"remoteIpAddress\": \"192.158.1.38\"\n   }\n  ]\n },\n \"activityGroupedByAsset\": null\n}"},{"id":"e243f0fc-9b34-48dd-9f90-a7876d2e05bf","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"be0ba2ea-e65f-4373-821c-22f588d9674b","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"8b2b91ca-f311-45d5-92d8-632efe83fa87","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/myself/activity?assetIds=631e9b5f-aa5c-b3cd-28de-37561f905564&assetIds=a48534ea-d200-638c-5562-a0895c761ccf&groupByAsset.enabled=true&groupByAsset.offset=1&groupByAsset.limit=50&names=consectetur culpa minim&names=id qui aute sint aliqua&clientIds=631e9b5f-aa5c-b3cd-28de-37561f905564&clientIds=a48534ea-d200-638c-5562-a0895c761ccf&types=consectetur culpa minim&types=id qui aute sint aliqua&offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","myself","activity"],"query":[{"key":"assetIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"assetIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"groupByAsset.enabled","value":"true"},{"key":"groupByAsset.offset","value":"1"},{"key":"groupByAsset.limit","value":"50"},{"key":"names","value":"consectetur culpa minim"},{"key":"names","value":"id qui aute sint aliqua"},{"key":"clientIds","value":"631e9b5f-aa5c-b3cd-28de-37561f905564"},{"key":"clientIds","value":"a48534ea-d200-638c-5562-a0895c761ccf"},{"key":"types","value":"consectetur culpa minim"},{"key":"types","value":"id qui aute sint aliqua"},{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"c5fab063-8d90-4a57-81ec-43e48efe5472"}],"id":"34c66cc2-6fee-4162-99ad-09644531dff0","_postman_id":"34c66cc2-6fee-4162-99ad-09644531dff0","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"OpenID Connect","item":[{"name":"Triggers a single sign-out.","id":"0703f18e-35cb-4f63-b385-56202d578419","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/connect/endsession?id_token_hint=consequat dolore&post_logout_redirect_uri=consequat dolore&state=consequat dolore","description":"<p>The end session endpoint can be used to trigger single sign-out. To use the end session endpoint a client application will redirect the user’s browser to the end session URL. All applications that the user has logged into via the browser during the user’s session can participate in the sign-out.</p>\n","urlObject":{"path":["connect","endsession"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>When the user is redirected to the endpoint, they will be prompted if they really want to sign-out. This prompt can be bypassed by a client sending the original id_token received from authentication.</p>\n","type":"text/plain"},"key":"id_token_hint","value":"consequat dolore"},{"description":{"content":"<p>If a valid id_token_hint is passed, then the client may also send a post_logout_redirect_uri parameter. This can be used to allow the user to redirect back to the client after sign-out.</p>\n","type":"text/plain"},"key":"post_logout_redirect_uri","value":"consequat dolore"},{"description":{"content":"<p>If a valid post_logout_redirect_uri is passed, then the client may also send a state parameter. This will be returned back to the client as a query string parameter after the user redirects back to the client. This is typically used by clients to round-trip state across the redirect.</p>\n","type":"text/plain"},"key":"state","value":"consequat dolore"}],"variable":[]}},"response":[{"id":"905a55cc-cb7c-4977-a240-3754793c91ce","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/connect/endsession?id_token_hint=consequat dolore&post_logout_redirect_uri=consequat dolore&state=consequat dolore","host":["https://dev.ipv.com/CuratorGateway"],"path":["connect","endsession"],"query":[{"key":"id_token_hint","value":"consequat dolore"},{"key":"post_logout_redirect_uri","value":"consequat dolore"},{"key":"state","value":"consequat dolore"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0703f18e-35cb-4f63-b385-56202d578419"},{"name":"Used by a secured resource to validate a token.","id":"1d7d31ec-ecac-46a5-9956-6964299980a8","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"token","value":"Ut fugiat aliqua id","description":"<p>(Required) The string value of the token.  For access tokens, this is the \"access_token\" value returned from the token endpoint. For refresh tokens, this is the \"refresh_token\" value.</p>\n"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/introspect","description":"<p>This endpoint be used to validate reference tokens (or JWTs if the consumer does not have support for appropriate JWT or cryptographic libraries). The introspection endpoint requires authentication - since the client of an introspection endpoint is an API.</p>\n","urlObject":{"path":["connect","introspect"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"ccb27e3a-de79-4367-ae0d-a2bdf590f948","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) The string value of the token.  For access tokens, this is the \"access_token\" value returned from the token endpoint. For refresh tokens, this is the \"refresh_token\" value.","key":"token","value":"Ut fugiat aliqua id"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/introspect"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"active\": false,\n \"sub\": \"esse consectetur\"\n}"}],"_postman_id":"1d7d31ec-ecac-46a5-9956-6964299980a8"},{"name":"Revokes an access or refresh token.","id":"df160232-d56d-4091-a468-fadb90e4309a","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"token","value":"Lorem fugiat consequat","description":"<p>(Required) The string value of the token to revoke.</p>\n"},{"key":"token_type_hint","value":"access_token","description":"<p>Either \"access_token\" or \"refresh_token\".</p>\n"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/revocation","description":"<p>This endpoint allows revoking access tokens (reference tokens only) and refresh token.</p>\n","urlObject":{"path":["connect","revocation"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"cff46fb5-ce09-41a8-9220-3b57690b88eb","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) The string value of the token to revoke.","key":"token","value":"Lorem fugiat consequat"},{"description":"Either \"access_token\" or \"refresh_token\".","key":"token_type_hint","value":"access_token"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/revocation"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"df160232-d56d-4091-a468-fadb90e4309a"},{"name":"Retrieve identity information about a user.","id":"1a8cf222-da80-4e56-85d2-87138067d9ac","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/connect/userinfo","description":"<p>The user info endpoint can be used to retrieve identity information about a user.</p>\n","urlObject":{"path":["connect","userinfo"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"fd792af8-eabd-4733-9f14-33aa8e158acb","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":"https://dev.ipv.com/CuratorGateway/connect/userinfo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"sub\": \"a9fd290b93994844a4088ca82b7f1677\",\n \"AspNet.Identity.SecurityStamp\": \"ZEMZSMC3IS6CO3OWSQXROORY5MW7ENTA\",\n \"role\": [\n  \"ADMIN\",\n  \"ANALYTICS\",\n  \"INGEST\",\n  \"LOGGING\"\n ],\n \"preferred_username\": \"sysadmin\",\n \"email\": \"ametcalfe@ipv.com\",\n \"email_verified\": true,\n \"picture\": \"https://[host]/CuratorGateway/identity/profile/avatar\",\n \"profile\": \"https://[host]/CuratorGateway/identity/profile\",\n \"name\": \"Admin\",\n \"nickname\": \"Admin\",\n \"access_token_lifetime\": \"3600\",\n \"tid\": \"937cc2b8-79b0-42db-bb3c-cfbb781062d8\",\n \"tname\": \"My Org\"\n}"}],"_postman_id":"1a8cf222-da80-4e56-85d2-87138067d9ac"},{"name":"Request tokens or authorization codes via the browser.","id":"96be8398-e96d-41dc-ba5d-0aa3f6f039c9","request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/connect/authorize?client_id=consequat dolore&scope=consequat dolore&redirect_uri=consequat dolore&response_type=code id_token&response_mode=form_post&request=consequat dolore&request_uri=consequat dolore&state=consequat dolore&nonce=consequat dolore&prompt=login&code_challenge=consequat dolore&code_challenge_method=S256&login_hint=consequat dolore&ui_locales=consequat dolore&max_age=consequat dolore","description":"<p>The authorize endpoint can be used to request tokens or authorization codes via the browser. This process typically involves authentication of the end-user and optionally consent.</p>\n","urlObject":{"path":["connect","authorize"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>(Required) Identifier of the client.</p>\n","type":"text/plain"},"key":"client_id","value":"consequat dolore"},{"description":{"content":"<p>(Required) One or more registered scopes.</p>\n","type":"text/plain"},"key":"scope","value":"consequat dolore"},{"description":{"content":"<p>(Required) The redirect URIs for the client.</p>\n","type":"text/plain"},"key":"redirect_uri","value":"consequat dolore"},{"description":{"content":"<p>(Required) The response type: code, ideneity token and/or access token.</p>\n","type":"text/plain"},"key":"response_type","value":"code id_token"},{"description":{"content":"<p>Sends the token response as a form post instead of a fragment encoded redirect.</p>\n","type":"text/plain"},"key":"response_mode","value":"form_post"},{"description":{"content":"<p>Instead of providing all parameters as individual query string parameters, you can provide a subset or all of them as a JWT.</p>\n","type":"text/plain"},"key":"request","value":"consequat dolore"},{"description":{"content":"<p>URL of a pre-packaged JWT containing request parameters</p>\n","type":"text/plain"},"key":"request_uri","value":"consequat dolore"},{"description":{"content":"<p>The authorisation server will echo back the state value on the token response, this is for round tripping state between client and provider, correlating request and response and CSRF/replay protection. (recommended).</p>\n","type":"text/plain"},"key":"state","value":"consequat dolore"},{"description":{"content":"<p>The authorisation server will echo back the nonce value in the identity token, this is for replay protection. Required for identity tokens via implicit grant.</p>\n","type":"text/plain"},"key":"nonce","value":"consequat dolore"},{"description":{"content":"<p>The login UI will be shown or not.</p>\n","type":"text/plain"},"key":"prompt","value":"login"},{"description":{"content":"<p>Sends the code challenge for PKCE.</p>\n","type":"text/plain"},"key":"code_challenge","value":"consequat dolore"},{"description":{"content":"<p>Plain indicates that the challenge is using plain text (not recommended) S256 indicates the challenge is hashed with SHA256.</p>\n","type":"text/plain"},"key":"code_challenge_method","value":"S256"},{"description":{"content":"<p>Can be used to pre-fill the username field on the login page.</p>\n","type":"text/plain"},"key":"login_hint","value":"consequat dolore"},{"description":{"content":"<p>Gives a hint about the desired display language of the login UI.</p>\n","type":"text/plain"},"key":"ui_locales","value":"consequat dolore"},{"description":{"content":"<p>If the user’s logon session exceeds the max age (in seconds), the login UI will be shown.</p>\n","type":"text/plain"},"key":"max_age","value":"consequat dolore"}],"variable":[]}},"response":[{"id":"5bbf71d1-c395-4a8c-b658-6d4963fd9a0b","name":"Redirect","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://dev.ipv.com/CuratorGateway/connect/authorize?client_id=consequat dolore&scope=consequat dolore&redirect_uri=consequat dolore&response_type=code id_token&response_mode=form_post&request=consequat dolore&request_uri=consequat dolore&state=consequat dolore&nonce=consequat dolore&prompt=login&code_challenge=consequat dolore&code_challenge_method=S256&login_hint=consequat dolore&ui_locales=consequat dolore&max_age=consequat dolore","host":["https://dev.ipv.com/CuratorGateway"],"path":["connect","authorize"],"query":[{"key":"client_id","value":"consequat dolore"},{"key":"scope","value":"consequat dolore"},{"key":"redirect_uri","value":"consequat dolore"},{"key":"response_type","value":"code id_token"},{"key":"response_mode","value":"form_post"},{"key":"request","value":"consequat dolore"},{"key":"request_uri","value":"consequat dolore"},{"key":"state","value":"consequat dolore"},{"key":"nonce","value":"consequat dolore"},{"key":"prompt","value":"login"},{"key":"code_challenge","value":"consequat dolore"},{"key":"code_challenge_method","value":"S256"},{"key":"login_hint","value":"consequat dolore"},{"key":"ui_locales","value":"consequat dolore"},{"key":"max_age","value":"consequat dolore"}]}},"status":"Found","code":302,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"96be8398-e96d-41dc-ba5d-0aa3f6f039c9"},{"name":"Request tokens or authorization codes via the browser.","id":"df19ebfe-2096-4270-8443-5bb88efc837c","request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_id","value":"eiusmod commodo nisi dolor veniam","description":"<p>(Required) Identifier of the client.</p>\n"},{"key":"scope","value":"in mollit","description":"<p>(Required) One or more registered scopes.</p>\n"},{"key":"redirect_uri","value":"sint incididunt enim aliqua nisi","description":"<p>(Required) The redirect URIs for the client.</p>\n"},{"key":"response_type","value":"id_token token","description":"<p>(Required) The response type: code, ideneity token and/or access token.</p>\n"},{"key":"response_mode","value":"form_post","description":"<p>Sends the token response as a form post instead of a fragment encoded redirect.</p>\n"},{"key":"request","value":"pariatur Excepteur","description":"<p>Instead of providing all parameters as individual query string parameters, you can provide a subset or all of them as a JWT.</p>\n"},{"key":"request_uri","value":"ex aute velit tempor","description":"<p>URL of a pre-packaged JWT containing request parameters</p>\n"},{"key":"state","value":"Excepteur","description":"<p>The authorisation server will echo back the state value on the token response, this is for round tripping state between client and provider, correlating request and response and CSRF/replay protection. (recommended).</p>\n"},{"key":"nonce","value":"dolore ut","description":"<p>The authorisation server will echo back the nonce value in the identity token, this is for replay protection. Required for identity tokens via implicit grant.</p>\n"},{"key":"prompt","value":"none","description":"<p>The login UI will be shown or not.</p>\n"},{"key":"code_challenge","value":"officia laboris eiusmod","description":"<p>Sends the code challenge for PKCE.</p>\n"},{"key":"code_challenge_method","value":"S256","description":"<p>Plain indicates that the challenge is using plain text (not recommended) S256 indicates the challenge is hashed with SHA256.</p>\n"},{"key":"login_hint","value":"qui sint nisi do","description":"<p>Can be used to pre-fill the username field on the login page.</p>\n"},{"key":"ui_locales","value":"fugiat co","description":"<p>Gives a hint about the desired display language of the login UI.</p>\n"},{"key":"max_age","value":"proident ipsum consectetur","description":"<p>If the user’s logon session exceeds the max age (in seconds), the login UI will be shown.</p>\n"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/authorize","description":"<p>The authorize endpoint can be used to request tokens or authorization codes via the browser. This process typically involves authentication of the end-user and optionally consent.</p>\n","urlObject":{"path":["connect","authorize"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"1b45d4e3-270b-4d7d-9a6f-82f072b391d5","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) Identifier of the client.","key":"client_id","value":"eiusmod commodo nisi dolor veniam"},{"description":"(Required) One or more registered scopes.","key":"scope","value":"in mollit"},{"description":"(Required) The redirect URIs for the client.","key":"redirect_uri","value":"sint incididunt enim aliqua nisi"},{"description":"(Required) The response type: code, ideneity token and/or access token.","key":"response_type","value":"id_token token"},{"description":"Sends the token response as a form post instead of a fragment encoded redirect.","key":"response_mode","value":"form_post"},{"description":"Instead of providing all parameters as individual query string parameters, you can provide a subset or all of them as a JWT.","key":"request","value":"pariatur Excepteur"},{"description":"URL of a pre-packaged JWT containing request parameters","key":"request_uri","value":"ex aute velit tempor"},{"description":"The authorisation server will echo back the state value on the token response, this is for round tripping state between client and provider, correlating request and response and CSRF/replay protection. (recommended).","key":"state","value":"Excepteur"},{"description":"The authorisation server will echo back the nonce value in the identity token, this is for replay protection. Required for identity tokens via implicit grant.","key":"nonce","value":"dolore ut"},{"description":"The login UI will be shown or not.","key":"prompt","value":"none"},{"description":"Sends the code challenge for PKCE.","key":"code_challenge","value":"officia laboris eiusmod"},{"description":"Plain indicates that the challenge is using plain text (not recommended) S256 indicates the challenge is hashed with SHA256.","key":"code_challenge_method","value":"S256"},{"description":"Can be used to pre-fill the username field on the login page.","key":"login_hint","value":"qui sint nisi do"},{"description":"Gives a hint about the desired display language of the login UI.","key":"ui_locales","value":"fugiat co"},{"description":"If the user’s logon session exceeds the max age (in seconds), the login UI will be shown.","key":"max_age","value":"proident ipsum consectetur"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/authorize"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"scope\": \"Duis proident adipisicing enim\",\n \"code\": \"veniam ad magna\",\n \"access_token\": \"ut cillum\",\n \"token_endpoint\": \"consequat aliquip\",\n \"expires_in\": \"ea sint\",\n \"token_type\": \"cillu\",\n \"refresh_token\": \"culpa Ut in aliqua ex\",\n \"id_token\": \"pariatur sed ut commodo\",\n \"state\": \"ullamco aute\",\n \"error\": \"id in fugiat exercitation aliquip\",\n \"error_description\": \"pariatur labor\"\n}"}],"_postman_id":"df19ebfe-2096-4270-8443-5bb88efc837c"},{"name":"Programmatically request tokens.","id":"f457bc45-844f-4b14-a5c6-54c7ddfff886","request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_id","value":"esse in est ut aliquip","description":"<p>(Required) The client identifier.</p>\n"},{"key":"client_secret","value":"reprehenderit adipisicing","description":"<p>(Required) Client secret either in the post body, or as a basic authentication header. Optional.</p>\n"},{"key":"grant_type","value":"refresh_token","description":"<p>(Required) The grant type (flow) to use. Custom grant types can be added.</p>\n"},{"key":"scope","value":"in nostrud a","description":"<p>One or more registered scopes. If not specified, a token for all explicitly allowed scopes will be issued.</p>\n"},{"key":"redirect_uri","value":"in eu","description":"<p>Required for the authorization_code grant type.</p>\n"},{"key":"code","value":"labore commodo","description":"<p>The authorization code (required for authorization_code grant type).</p>\n"},{"key":"code_verifier","value":"nostrud pariatur","description":"<p>PKCE proof key.</p>\n"},{"key":"username","value":"occaecat aliqua","description":"<p>Resource owner username (required for password grant type).</p>\n"},{"key":"password","value":"ad magna","description":"<p>Resource owner password (required for password grant type).</p>\n"},{"key":"refresh_token","value":"adipisicing in","description":"<p>The refresh token (required for refresh_token grant type).</p>\n"},{"key":"device_code","value":"cillum nisi ut mollit","description":"<p>The device code (required for urn:ietf:params:oauth:grant-type:device_code grant type).</p>\n"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/token","description":"<p>The token endpoint can be used to programmatically request tokens.</p>\n","urlObject":{"path":["connect","token"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"f1d14c4c-e8c2-4c06-88f6-74fbf02c7877","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) The client identifier.","key":"client_id","value":"esse in est ut aliquip"},{"description":"(Required) Client secret either in the post body, or as a basic authentication header. Optional.","key":"client_secret","value":"reprehenderit adipisicing"},{"description":"(Required) The grant type (flow) to use. Custom grant types can be added.","key":"grant_type","value":"refresh_token"},{"description":"One or more registered scopes. If not specified, a token for all explicitly allowed scopes will be issued.","key":"scope","value":"in nostrud a"},{"description":"Required for the authorization_code grant type.","key":"redirect_uri","value":"in eu"},{"description":"The authorization code (required for authorization_code grant type).","key":"code","value":"labore commodo"},{"description":"PKCE proof key.","key":"code_verifier","value":"nostrud pariatur"},{"description":"Resource owner username (required for password grant type).","key":"username","value":"occaecat aliqua"},{"description":"Resource owner password (required for password grant type).","key":"password","value":"ad magna"},{"description":"The refresh token (required for refresh_token grant type).","key":"refresh_token","value":"adipisicing in"},{"description":"The device code (required for urn:ietf:params:oauth:grant-type:device_code grant type).","key":"device_code","value":"cillum nisi ut mollit"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"access_token\": \"in incididunt\",\n \"expires_in\": \"commodo qui nisi irure ad\",\n \"token_type\": \"Excepteur anim\",\n \"refresh_token\": \"consectetur Ut do\",\n \"id_token\": \"deserunt Lorem laboris\",\n \"scope\": \"minim proident Duis\",\n \"error\": \"qui ullamco proident Duis\",\n \"error_description\": \"consequat\"\n}"}],"_postman_id":"f457bc45-844f-4b14-a5c6-54c7ddfff886"},{"name":"Programmatically request tokens. Copy","id":"5aab8490-ace7-4d77-bc18-f19ce75d460f","request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_id","value":"esse in est ut aliquip","description":"<p>(Required) The client identifier.</p>\n"},{"key":"client_secret","value":"reprehenderit adipisicing","description":"<p>(Required) Client secret either in the post body, or as a basic authentication header. Optional.</p>\n"},{"key":"grant_type","value":"refresh_token","description":"<p>(Required) The grant type (flow) to use. Custom grant types can be added.</p>\n"},{"key":"scope","value":"in nostrud a","description":"<p>One or more registered scopes. If not specified, a token for all explicitly allowed scopes will be issued.</p>\n"},{"key":"redirect_uri","value":"in eu","description":"<p>Required for the authorization_code grant type.</p>\n"},{"key":"code","value":"labore commodo","description":"<p>The authorization code (required for authorization_code grant type).</p>\n"},{"key":"code_verifier","value":"nostrud pariatur","description":"<p>PKCE proof key.</p>\n"},{"key":"username","value":"occaecat aliqua","description":"<p>Resource owner username (required for password grant type).</p>\n"},{"key":"password","value":"ad magna","description":"<p>Resource owner password (required for password grant type).</p>\n"},{"key":"refresh_token","value":"adipisicing in","description":"<p>The refresh token (required for refresh_token grant type).</p>\n"},{"key":"device_code","value":"cillum nisi ut mollit","description":"<p>The device code (required for urn:ietf:params:oauth:grant-type:device_code grant type).</p>\n"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/token","description":"<p>The token endpoint can be used to programmatically request tokens.</p>\n","urlObject":{"path":["connect","token"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"c81c1e43-e3ee-4f0a-95b6-5d466ef87d2f","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) The client identifier.","key":"client_id","value":"esse in est ut aliquip"},{"description":"(Required) Client secret either in the post body, or as a basic authentication header. Optional.","key":"client_secret","value":"reprehenderit adipisicing"},{"description":"(Required) The grant type (flow) to use. Custom grant types can be added.","key":"grant_type","value":"refresh_token"},{"description":"One or more registered scopes. If not specified, a token for all explicitly allowed scopes will be issued.","key":"scope","value":"in nostrud a"},{"description":"Required for the authorization_code grant type.","key":"redirect_uri","value":"in eu"},{"description":"The authorization code (required for authorization_code grant type).","key":"code","value":"labore commodo"},{"description":"PKCE proof key.","key":"code_verifier","value":"nostrud pariatur"},{"description":"Resource owner username (required for password grant type).","key":"username","value":"occaecat aliqua"},{"description":"Resource owner password (required for password grant type).","key":"password","value":"ad magna"},{"description":"The refresh token (required for refresh_token grant type).","key":"refresh_token","value":"adipisicing in"},{"description":"The device code (required for urn:ietf:params:oauth:grant-type:device_code grant type).","key":"device_code","value":"cillum nisi ut mollit"}]},"url":"https://dev.ipv.com/CuratorGateway/connect/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"access_token\": \"in incididunt\",\n \"expires_in\": \"commodo qui nisi irure ad\",\n \"token_type\": \"Excepteur anim\",\n \"refresh_token\": \"consectetur Ut do\",\n \"id_token\": \"deserunt Lorem laboris\",\n \"scope\": \"minim proident Duis\",\n \"error\": \"qui ullamco proident Duis\",\n \"error_description\": \"consequat\"\n}"}],"_postman_id":"5aab8490-ace7-4d77-bc18-f19ce75d460f"},{"name":"Returns OpenId Connect metadata related to the Curator authorisation server.","id":"c0b61156-d434-41cf-9085-9a7b3f08a6b6","request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/.well-known/openid-configuration","description":"<p>The discovery endpoint can be used to return OpenID Connect metadata related to the Curator authorisation server. It returns information like the issuer name, key material, supported scopes etc.</p>\n","urlObject":{"path":[".well-known","openid-configuration"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[{"id":"bbf77403-c8d2-4aeb-857a-d8dd2c6f5fcd","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/.well-known/openid-configuration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"issuer\": \"https://myserver/curatorgateway\",\n \"jwks_uri\": \"https://myserver/CuratorGateway/.well-known/openid-configuration/jwks\",\n \"authorization_endpoint\": \"https://myserver/CuratorGateway/connect/authorize\",\n \"token_endpoint\": \"https://myserver/CuratorGateway/connect/token\",\n \"userinfo_endpoint\": \"https://myserver/CuratorGateway/connect/userinfo\",\n \"end_session_endpoint\": \"https://myserver/CuratorGateway/connect/endsession\",\n \"check_session_iframe\": \"https://myserver/CuratorGateway/connect/checksession\",\n \"revocation_endpoint\": \"https://myserver/CuratorGateway/connect/revocation\",\n \"introspection_endpoint\": \"https://myserver/CuratorGateway/connect/introspect\",\n \"device_authorization_endpoint\": \"https://myserver/CuratorGateway/connect/deviceauthorization\",\n \"frontchannel_logout_supported\": true,\n \"frontchannel_logout_session_supported\": true,\n \"backchannel_logout_supported\": true,\n \"backchannel_logout_session_supported\": true,\n \"scopes_supported\": [\n  \"openid\",\n  \"profile\",\n  \"email\",\n  \"address\",\n  \"phone\",\n  \"roles\",\n  \"Curator.DeviceDirector.API\",\n  \"Curator.Gateway.API\",\n  \"Curator.ProcessEngine.API\",\n  \"Curator.Proxies\",\n  \"Curator.Server.API\",\n  \"Curator.Siphon.API\",\n  \"Curator.SVUtils.API\",\n  \"Curator.XChange.API\",\n  \"offline_access\"\n ],\n \"claims_supported\": [\n  \"sub\",\n  \"name\",\n  \"family_name\",\n  \"given_name\",\n  \"middle_name\",\n  \"nickname\",\n  \"preferred_username\",\n  \"profile\",\n  \"picture\",\n  \"website\",\n  \"gender\",\n  \"birthdate\",\n  \"zoneinfo\",\n  \"locale\",\n  \"updated_at\",\n  \"email\",\n  \"email_verified\",\n  \"address\",\n  \"phone_number\",\n  \"phone_number_verified\",\n  \"role\",\n  \"http://schemas.microsoft.com/ws/2008/06/identity/claims/role\"\n ],\n \"grant_types_supported\": [\n  \"authorization_code\",\n  \"client_credentials\",\n  \"refresh_token\",\n  \"implicit\",\n  \"password\",\n  \"urn:ietf:params:oauth:grant-type:device_code\",\n  \"delegation\"\n ],\n \"response_types_supported\": [\n  \"code\",\n  \"token\",\n  \"id_token\",\n  \"id_token token\",\n  \"code id_token\",\n  \"code token\",\n  \"code id_token token\"\n ],\n \"response_modes_supported\": [\n  \"form_post\",\n  \"query\",\n  \"fragment\"\n ],\n \"token_endpoint_auth_methods_supported\": [\n  \"client_secret_basic\",\n  \"client_secret_post\"\n ],\n \"id_token_signing_alg_values_supported\": [\n  \"RS256\"\n ],\n \"subject_types_supported\": [\n  \"public\"\n ],\n \"code_challenge_methods_supported\": [\n  \"plain\",\n  \"S256\"\n ],\n \"request_parameter_supported\": true\n}"}],"_postman_id":"c0b61156-d434-41cf-9085-9a7b3f08a6b6"}],"id":"fb7383dc-449c-4692-8142-6a3c75fefae6","_postman_id":"fb7383dc-449c-4692-8142-6a3c75fefae6","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Tasks","item":[{"name":"Get task.","id":"13522936-86f2-4544-a568-a8c8ea0bb04f","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/tasks/:taskId","description":"<p>Returns the asynchronous task details.</p>\n","urlObject":{"path":["api","v1","tasks",":taskId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"eb0a0cdf-b9fa-4a17-bc2e-38a661f161b0","description":{"content":"<p>(Required) The id of the task to get.</p>\n","type":"text/plain"},"type":"any","value":"PE-a00c748c-568f-468b-89b3-0c82fbaf0d15","key":"taskId"}]}},"response":[{"id":"3e474b8a-347b-466c-87bf-5ea2ddd74970","name":"Returned if the request is successful.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/tasks/:taskId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","tasks",":taskId"],"variable":[{"key":"taskId","value":"PE-a00c748c-568f-468b-89b3-0c82fbaf0d15","description":"(Required) The id of the task to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/tasks/processengine-a00c748c-568f-468b-89b3-0c82fbaf0d15\",\n \"id\": \"processengine-a00c748c-568f-468b-89b3-0c82fbaf0d15\",\n \"description\": \"Process Engine process used to ingest an asset from a file.\",\n \"status\": \"Complete\",\n \"statusMessages\": [\n  {\n   \"message\": \"Process completed successfully.\",\n   \"type\": \"Info\"\n  }\n ],\n \"submittedDateTime\": \"2022-01-12T08:29:14.2242907Z\",\n \"completedDateTime\": \"2022-01-12T08:34:14.2242915Z\",\n \"errored\": false,\n \"progress\": 100,\n \"total\": 100,\n \"results\": {\n  \"assetId\": \"16ea0bae-3b11-495b-a14a-e7c558236d16\"\n },\n \"links\": {\n  \"asset\": {\n   \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/assets/16ea0bae-3b11-495b-a14a-e7c558236d16\"\n  }\n }\n}"},{"id":"64597b00-6c81-4d7e-863c-77be4b673a30","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/tasks/:taskId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","tasks",":taskId"],"variable":[{"key":"taskId","value":"PE-a00c748c-568f-468b-89b3-0c82fbaf0d15","description":"(Required) The id of the task to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"791857e8-8a75-4566-adb2-0e515a02b686","name":"The request is forbidden. Required scopes: Curator.ProcessEngine.API","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/tasks/:taskId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","tasks",":taskId"],"variable":[{"key":"taskId","value":"PE-a00c748c-568f-468b-89b3-0c82fbaf0d15","description":"(Required) The id of the task to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"f3c06de0-302b-48f7-add9-cef2d7e9206e","name":"Returned if the task is not found.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/tasks/:taskId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","tasks",":taskId"],"variable":[{"key":"taskId","value":"PE-a00c748c-568f-468b-89b3-0c82fbaf0d15","description":"(Required) The id of the task to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"0c7eace9-8048-4d17-9e6a-03d81737e797","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/tasks/:taskId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","tasks",":taskId"],"variable":[{"key":"taskId","value":"PE-a00c748c-568f-468b-89b3-0c82fbaf0d15","description":"(Required) The id of the task to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"},{"id":"82c965d2-e43a-46de-bf2f-75c41e432581","name":"Failed to communicate with the back-end service(s).","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/tasks/:taskId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","tasks",":taskId"],"variable":[{"key":"taskId","value":"PE-a00c748c-568f-468b-89b3-0c82fbaf0d15","description":"(Required) The id of the task to get."}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 502,\n \"title\": \"Bad Gateway\",\n \"type\": \"https://httpstatuses.com/502\",\n \"traceId\": \"|5279779a-4d732e3099aea5a0.\"\n}"}],"_postman_id":"13522936-86f2-4544-a568-a8c8ea0bb04f"}],"id":"facb6655-b73c-469e-8144-52a29f6a4e3f","_postman_id":"facb6655-b73c-469e-8144-52a29f6a4e3f","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"User Groups","item":[{"name":"Get user groups.","id":"285a5e10-3715-4c87-ade1-1deb61cb37af","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups?offset=1&limit=50","description":"<p>Returns a list of user groups.</p>\n","urlObject":{"path":["api","v1","usergroups"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"52513c12-fec3-4bb2-bc1c-2173dbdf6ca7","name":"The list of user groups is returned.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/System%20Administrators\",\n  \"id\": \"c7fde1d6-4dfe-4fd9-8eb8-4105f10f0ab3\",\n  \"name\": \"System Administrators\",\n  \"description\": \"A group containing system administrators.\",\n  \"createdDateTime\": \"2021-01-12T08:34:14.2339249Z\",\n  \"isSystem\": false\n }\n]"},{"id":"febc217e-a940-49de-bfb9-7dcafb2e1c91","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"6af18ef7-fdf6-4878-ab34-53243168c226","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"bc4dde11-989b-45ae-9776-5d3797e6f86a","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"6bb9e74b-0a63-4010-8671-e40ecadd2c30","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"285a5e10-3715-4c87-ade1-1deb61cb37af"},{"name":"Get user group.","id":"afda16cf-382e-41b7-b3e4-1762173c4a49","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","description":"<p>Returns a user group.</p>\n","urlObject":{"path":["api","v1","usergroups",":name"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"90533f3b-07a5-4944-a54b-a0af5e1710d8","description":{"content":"<p>(Required) The name of the user group to get.</p>\n","type":"text/plain"},"type":"any","value":"System Administrators","key":"name"}]}},"response":[{"id":"82b1ec6a-ef3c-4ee4-aee3-db102cd89395","name":"The user group.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/System%20Administrators\",\n \"id\": \"6598f26e-478e-4d18-9659-fdb98263a583\",\n \"name\": \"System Administrators\",\n \"description\": \"A group containing system administrators.\",\n \"createdDateTime\": \"2021-01-12T08:34:14.2371886Z\",\n \"isSystem\": false\n}"},{"id":"6c530db2-c5af-4890-bf61-0dd2ab2eda60","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"f881d5b9-f44d-4470-bf92-ac4f82e0a9f5","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"5be3d82b-6323-4981-aaf5-43a92d801ea0","name":"The user group was not found.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"4ee527ab-0499-4507-a9b9-b762095ab01c","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"afda16cf-382e-41b7-b3e4-1762173c4a49"},{"name":"Does user group exist?","id":"ab686c25-faef-4fe1-843b-8716b3f695b0","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"HEAD","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","description":"<p>Determines if a user group with the given name exists.</p>\n","urlObject":{"path":["api","v1","usergroups",":name"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"b7ff3b05-a008-4a73-a6bf-fc7bea8fced9","description":{"content":"<p>(Required) The name of the user group to check if it exists.</p>\n","type":"text/plain"},"type":"any","value":"System Administrators","key":"name"}]}},"response":[{"id":"0cabbe7e-32ee-4138-ab33-1ade2123fe8d","name":"The user group exists.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to check if it exists."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"60150555-f0f1-4921-9520-17702a666d22","name":"The request is unauthorised.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to check if it exists."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"fd820a3a-c100-4afb-a2c7-a26136528a95","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to check if it exists."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"958c312a-26ad-4a66-a979-dd4b93839221","name":"The user group does not exist.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to check if it exists."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"f2082510-a40f-4496-b48f-fb75f5a41e34","name":"An internal server error occurred.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/usergroups/:name","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","usergroups",":name"],"variable":[{"key":"name","value":"System Administrators","description":"(Required) The name of the user group to check if it exists."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"ab686c25-faef-4fe1-843b-8716b3f695b0"}],"id":"9fd0230d-541c-433c-8f2e-335580249bf8","_postman_id":"9fd0230d-541c-433c-8f2e-335580249bf8","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"Users","item":[{"name":"Get users.","id":"265f1155-a44e-4909-ac2f-9ef35edda542","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/users?offset=1&limit=50","description":"<p>Returns a list of all (active and inactive) users.</p>\n","urlObject":{"path":["api","v1","users"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[{"description":{"content":"<p>The optional offset into the list of items. Must be greater than or equal to 0.</p>\n","type":"text/plain"},"key":"offset","value":"1"},{"description":{"content":"<p>The number of items to return. Limit must be greater than or equal to 0 and less than 200.</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"f38016ac-80ca-48b3-bd7f-d2380085118a","name":"The list of users is returned.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/users/1a2cc3f7-0acc-47bd-bfd7-2768b899a68c\",\n  \"userName\": \"ametcalfe@ipv.com\",\n  \"displayName\": \"Alex Metcalfe\",\n  \"email\": \"ametcalfe@ipv.com\",\n  \"emailConfirmed\": true,\n  \"accessFailedCount\": 0,\n  \"isActive\": true,\n  \"lockoutEnabled\": true,\n  \"lockoutEnd\": null,\n  \"twoFactorEnabled\": true,\n  \"id\": \"1a2cc3f7-0acc-47bd-bfd7-2768b899a68c\",\n  \"createdDateTime\": \"2021-01-12T08:34:14.2534226Z\",\n  \"updatedDateTime\": \"2022-01-11T08:34:14.253423Z\",\n  \"isSystem\": false,\n  \"forcePasswordChange\": false\n }\n]"},{"id":"7aee1e43-f24e-43a4-8342-20b60f007866","name":"Invalid request parameters.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"errors\": [\n  {\n   \"parameter1\": [\n    \"Parameter1 must be greater than 0.\"\n   ]\n  }\n ],\n \"status\": 400,\n \"title\": \"One or more validation errors occurred.\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n \"traceId\": \"|56825d25-4bab64479d589d29.\"\n}"},{"id":"636b518e-d4b3-4dd8-8972-2d8d9358643f","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"f4d61499-9c94-4990-bc8d-ed5e83fabf8f","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"cd5cc097-34df-4adf-ad72-b5b75115d12a","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users?offset=1&limit=50","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users"],"query":[{"key":"offset","value":"1"},{"key":"limit","value":"50"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"265f1155-a44e-4909-ac2f-9ef35edda542"},{"name":"Get user.","id":"f3a77df0-4a6a-4dd6-a118-308c7655e4c5","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","description":"<p>Returns a user.</p>\n","urlObject":{"path":["api","v1","users",":userId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"8532217d-3cdb-40d4-b1cc-49c73c0be01f","description":{"content":"<p>(Required) The id of the user to get.</p>\n","type":"text/plain"},"type":"any","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","key":"userId"}]}},"response":[{"id":"b397ba54-4ce6-48f5-a0ff-1111ff58a5bd","name":"The user.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to get."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"href\": \"https://dev.ipv.com/CuratorGateway/api/v1/users/2009a061-1930-45bf-903d-7dbb0152baf4\",\n \"userName\": \"ametcalfe@ipv.com\",\n \"displayName\": \"Alex Metcalfe\",\n \"email\": \"ametcalfe@ipv.com\",\n \"emailConfirmed\": true,\n \"accessFailedCount\": 0,\n \"isActive\": true,\n \"lockoutEnabled\": true,\n \"lockoutEnd\": null,\n \"twoFactorEnabled\": true,\n \"id\": \"2009a061-1930-45bf-903d-7dbb0152baf4\",\n \"createdDateTime\": \"2021-01-12T08:34:14.2561542Z\",\n \"updatedDateTime\": \"2022-01-11T08:34:14.2561547Z\",\n \"isSystem\": false,\n \"forcePasswordChange\": false\n}"},{"id":"a16e7b8a-2550-4455-bc0e-70f08eb1d411","name":"The request is unauthorised.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to get."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"d0baee88-300e-41ab-8689-f62b91c78bae","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to get."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"43bcee0d-6a0b-4fb8-8063-570fafa1e489","name":"The user was not found.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to get."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"9d98dd38-c7fa-4a3c-aeb6-ffa0473f4ba2","name":"An internal server error occurred.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to get."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"f3a77df0-4a6a-4dd6-a118-308c7655e4c5"},{"name":"Does user exist?","id":"d0bc25ed-b892-43d9-b6d1-cbd5ee132554","request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"HEAD","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","description":"<p>Determines if a user with the given id exists.</p>\n","urlObject":{"path":["api","v1","users",":userId"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[{"id":"4a442f97-33a8-4039-bd8d-cb0e00f60bca","description":{"content":"<p>(Required) The id of the user to check if exists.</p>\n","type":"text/plain"},"type":"any","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","key":"userId"}]}},"response":[{"id":"109dc44e-9ccf-447b-be9c-fd8520be5869","name":"The user exists.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to check if exists."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"433d61f4-ab54-47b0-885b-78c1d9681ad5","name":"The request is unauthorised.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to check if exists."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 401,\n \"title\": \"Unauthorized\",\n \"type\": \"https://httpstatuses.com/401\",\n \"traceId\": \"|4dc214de-461261a6cea7b558.\"\n}"},{"id":"094e3926-27bd-477d-add6-3ece38daa322","name":"The request is forbidden. Required scopes: Curator.Gateway.API Required roles: ADMIN","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to check if exists."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://httpstatuses.com/403\",\n \"traceId\": \"|5fc214de-461261a6cea7b598.\"\n}"},{"id":"57e484dc-f7c4-456b-9b70-4284ad369568","name":"The user does not exist.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to check if exists."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.4\",\n \"traceId\": \"|6e56eb80-405baf41b5edd0f1.\"\n}"},{"id":"a275bfa3-2c5d-4edd-8e8b-4ef33ab8a717","name":"An internal server error occurred.","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"description":"(Required) The access token.","key":"Authorization","value":"Bearer [access token]"}],"url":{"raw":"https://dev.ipv.com/CuratorGateway/api/v1/users/:userId","host":["https://dev.ipv.com/CuratorGateway"],"path":["api","v1","users",":userId"],"variable":[{"key":"userId","value":"aefbb5e4-f085-4cb9-83db-c164ca2eb043","description":"(Required) The id of the user to check if exists."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"detail\": \"An error occured when communicating with service.\",\n \"status\": 500,\n \"title\": \"Internal Server Error\",\n \"type\": \"https://httpstatuses.com/500\",\n \"traceId\": \"|3a3bc0fe-4b2e003bbe4637e6.\"\n}"}],"_postman_id":"d0bc25ed-b892-43d9-b6d1-cbd5ee132554"}],"id":"22a234a6-0538-460d-961e-a3ff5a5f3a3b","_postman_id":"22a234a6-0538-460d-961e-a3ff5a5f3a3b","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}},{"name":"System","item":[{"name":"Get Environment Details","id":"afae7b25-d5fb-491c-af9c-5801ba4a7819","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dev.ipv.com/CuratorGateway/api/v1/system/environment","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}},"urlObject":{"path":["api","v1","system","environment"],"host":["https://dev.ipv.com/CuratorGateway"],"query":[],"variable":[]}},"response":[],"_postman_id":"afae7b25-d5fb-491c-af9c-5801ba4a7819"}],"id":"ed42a8bf-5677-4f96-b437-0dedd037fc89","_postman_id":"ed42a8bf-5677-4f96-b437-0dedd037fc89","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","id":"1a7f0281-2dfe-4763-a143-4a85e8a78bee","name":"Curator API V1 (1.1)","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{authClientSecret}}"},{"key":"clientId","value":"{{authClientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"{{gatewayBaseUrl}}"},{"key":"tokenName","value":"<token-name>"}]}},"event":[{"listen":"prerequest","script":{"id":"df609456-81e3-423b-a98c-6abd68a96a9c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c6df3654-d695-471c-a80c-4631e8037b69","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://dev.ipv.com/CuratorGateway","type":"string"}]}