{"info":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","description":"

MediaValet API is a RESTful service that implements hypermedia which supplies the data to a client wanting to consume MediaValet data. The service applies business rules, permission rules, and other data processing to standardize what is returned from the service.

\n

Getting Started

\n
Before You Start:
\n
    \n
  1. Create your account in the MediaValet Developer Portal.
  2. \n
  3. Subscribe to a plan in the Developer Portal.
  4. \n
  5. Follow the instructions on the e-mail you will receive after your subscription is approved.
  6. \n
  7. You are ready to go!
  8. \n
\n

Watch the video below for a quick tour of our API documentation.

\n

\"Click

\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"}],"owner":"15676803","collectionId":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","publishedId":"TzRUB7XE","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"0E72ED"},"publishDate":"2023-08-30T16:15:03.000Z"},"item":[{"name":"General Information","item":[{"name":"Authentication","item":[],"id":"8792dfe6-b692-4f25-8634-dc1d324f53cb","description":"

Currently, we support the OAuth 2.0 (OIDC) Auth Code flow with Access Token, Refresh Token, and ID Token as grant types. Our implementation is fully OIDC-conformant.

\n

Should you require another flow please reach out to our API support team (support@mediavalet.com) with details of how and why you'd like to use the flow. We do not support the Resource Owner Password Credentials Grant due to its inherent insecurity.

\n

The base URL for all authentication requests is https://login.mediavalet.com

\n

Prerequisites

\n

You'll require client_id, client_secret, and redirect_uri values that are set up by our API support team.

\n

If you don't have them please contact our API support team support@mediavalet.com.

\n

How to Authenticate using the Auth Code Flow

\n

1 - Make the initial authorization request to start the flow:

\n
GET https://login.mediavalet.com/connect/authorize\n?client_id=<client-id>\n&response_type=code\n&scope=openid api\n&redirect_uri=<your-redirect-url>\n&state=state-296bc9a0\n\n

2 - The browser will be re-directed to our secure login page and the user fills in their credentials which are validated by our identity service.

\n

3 - Our identity service will redirect the user's browser to the provided redirect_uri with the code as a query parameter:

\n
GET https://<your-redirect-url>\n?client_id=<client-id>\n&code=0357a6f78e400d4039eacfdf3007d5b8d6984c9d92a0175fc5ed6f8cc1cec472\n&scope=openid api\n&state=state-296bc9a0\n\n

4 - Your client application then makes a request to the POST /connect/token endpoint with the data below form encoded in the body of the request. This should be done from a secure service.

\n

Request sample:

\n
POST https://login.mediavalet.com/connect/token\ngrant_type=authorization_code\n&code=3ed822db0c2409dd1babee5150e8ec71dcf854534214fb3a9361ada778a62ea1\n&redirect_uri=<your-redirect-url>\n&client_id=<client-id>\n&client_secret=<client-secret>\n\n

Response sample:

\n
{\n  \"id_token\":\"ID_TOKEN_VALUE\",\n  \"access_token\":\"ACCESS_TOKEN_VALUE\",\n  \"expires_in\":3600,\n  \"token_type\":\"Bearer\"\n}\n\n

5 - You can now use the token provided in the \"access_token\" parameter to authorize requests to our API by providing an Authorization header with each request that includes the token:

\n
Authorization: bearer ACCESS_TOKEN_VALUE\n\n

How to Authenticate using the Resource Owner Password Flow

\n

The resource owner password grant type allows requesting tokens on behalf of a user by sending the user’s name and password to the /token endpoint. While we do discourage using this workflow by default for security reasons, this is the preferred method for enforcing “non-interactive” authentication. Our team is also working towards building the Client Credentials Flow which will be the preferred method once implemented.

\n

The Authorization header is a basic auth digest of the 'client_id:client_secret'. A basic auth digest is a base64 string of the 'client_id:client_secret' this can be generated multiple ways either through built in Postman Authorization tab itself or an SDK in your projects environment.

\n

The username and password are the credentials you use to login into your DAM portal. e.g xxxx.mediavalet.com.

\n

Request sample:

\n
POST https://login.mediavalet.com/connect/token?grant_type=password\n&username={username}\n&password={password}\n&scope=api\nContent-Type: application/x-www-form-urlencoded\nAuthorization: Basic TE9MIEdvdCA6IFlvdSA6UCA=\n\n

Response sample:

\n
{\n   \"access_token\":\"ACCESS_TOKEN_VALUE\",\n   \"expires_in\":3600,\n   \"token_type\":\"Bearer\",\n   \"scope\":\"api\"\n}\n\n

How to Use a Refresh Token

\n

A refresh token is used to generate additional access tokens. This allows you to have short-lived access tokens without having to collect credentials every single time one expires. You request this token alongside the access and/or ID tokens as part of a user's initial authentication flow.

\n

To refresh your access token as well as an ID token, you send a token request with a grant_type of refresh_token.

\n

Request Sample:

\n
POST /connect/token HTTP/1.1\nHost: login.mediavalet.com\nContent-Type: application/x-www-form-urlencoded\ncache-control: no-cache\ngrant_type=refresh_token&refresh_token=9d03ba84f34\n&client_id=<client-id>&client_secret=<client-secret>\n\n

Response sample:

\n
{\n  \"id_token\":\"ID_TOKEN_VALUE\",\n  \"access_token\":\"ACCESS_TOKEN_VALUE\",\n  \"refresh_token\":\"NEW_REFRESH_TOKEN\",\n  \"expires_in\":3600,\n  \"token_type\":\"Bearer\"\n}\n\n

Authorize Endpoint (/connect/authorize)

\n

This is a starting point for browser-based OpenID Connect flows such as the authorization code flow. This request authenticates the user and returns tokens along with an authorization grant to the client application as a part of the callback response.

\n

Request Parameters:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ParameterDescription
client_idIdentifies the client and must match the value pre-registered with MediaValet.
redirect_uriCallback location where the authorization code or tokens should be sent to. It must match the value pre-registered with MediaValet during client registration.
response_typeAny combination of code, token, and id_token. The combination determines the flow.
scope“openid” and “api” are required for authentication requests. The latter adds all claims that the MediaValet API expects to complete a request. “offline_access” is optional and should be used to request refresh tokens.
stateA value to be returned in the token. The client application can use it to remember the state of its interaction with the end-user at the time of the authentication call.
\n

Token Endpoint (/connect/token)

\n

This endpoint returns access tokens, ID tokens, and refresh tokens, depending on the request parameters. For refresh token flow, calling /token is the only step of the flow. For the authorization code flow, calling /token is the second step of the flow (/Authorize being the first one).

\n

Request Parameters:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ParameterDescription
client_idIdentifies the client and must match the value pre-registered with MediaValet.
client_secretThis client secret is used in conjunction with client_id to authenticate the client application.
codeThe value is what was returned from the authorization endpoint. The code has a lifetime of 60 seconds.
grant_typeCan be one of the following: authorization_code or refresh_token. Determines the mechanism MediaValet uses to authorize the creation of the tokens.
redirect_uriRequired when grant_type is authorization_code. Specifies the callback location where the authorization was sent. This value must match the redirect_uri used to generate the original authorization_code.
refresh_tokenRequired when grant_type is refresh_token. The value is a valid refresh token that was returned from this endpoint previously.
\n

Response Properties:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ParameterDescription
access_tokenAccess token that can be used against the MediaValet API on behalf of a user.
expires_inThe expiration time of the access token in seconds.
refresh_tokenAn opaque refresh token. This is returned if the offline_access scope is granted.
id_tokenAn ID token. This is returned if the openid scope is granted.
\n
","_postman_id":"8792dfe6-b692-4f25-8634-dc1d324f53cb","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"API Responses","item":[],"id":"9dc6ace6-d374-4d79-90c9-a3a16269395a","description":"

All responses from the API have the same structure which includes a mix of entity data and meta-data details.
The layout of the document is:

\n
{\n    \"ApiVersion\": \"1.0.0.0\",\n    \"Meta\": {\n        \"MetaInformation\": {},\n        \"Warnings\": [],\n        \"Errors\": [],\n        \"CreatedOn\": \"2014-01-01T00:00:00Z\"\n      },\n      \"RecordCount\": {\n        \"TotalRecordsFound\": 0,\n        \"StartingRecord\": 1,\n        \"RecordsReturned\": 10\n      },\n      \"Payload\": {}\n}\n\n
Definitions
\n\n","_postman_id":"9dc6ace6-d374-4d79-90c9-a3a16269395a","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"API Versions","item":[],"id":"d1a4ff35-d5fa-4f3e-a5c1-6ec7ecb9fa5c","description":"

Learn how to specify which REST API version to use whenever you make a request to the REST API.

\n

About API Versioning

\n

Any breaking changes will be released in a new API version. Breaking changes are changes that can potentially break an integration.

\n

Breaking changes include:

\n
    \n
  1. Removing Endpoints: Deleting or deprecating existing API endpoints that clients depend on.

    \n
  2. \n
  3. Removal/Renaming of Fields: Removing or renaming existing fields returned by the API, potentially causing compatibility issues for existing clients.

    \n
  4. \n
  5. Modifying Request/Response Semantics: Changing the meaning or behavior of API requests or responses.

    \n
  6. \n
  7. Removing or Renaming Parameters: Eliminating or renaming parameters that clients use in their requests.

    \n
  8. \n
  9. Authentication Changes: Modifying authentication mechanisms or requirements.

    \n
  10. \n
\n

Non-breaking changes include:

\n
    \n
  1. Addition of new endpoints, fields, or optional parameters.

    \n
  2. \n
  3. Addition of new query parameters or header values.

    \n
  4. \n
  5. Changes in hostname returned in URLs.

    \n
  6. \n
  7. Bug fixes.

    \n
  8. \n
  9. Performance improvements.

    \n
  10. \n
\n

Specifying an API Version

\n

You should use the x-mv-api-version header to specify an API version. For example:

\n

curl --request GET 'https://api.mediavalet.com/attributes' --header 'x-mv-api-version: 1.2'

\n

The response includes the ApiVersion for you to confirm the version of the data received.

\n
{\n    \"ApiVersion\": \"1.2\",\n    \"Meta\": {\n        \"MetaInformation\": {},\n        \"Warnings\": [],\n        \"Errors\": [],\n        \"CreatedOn\": \"2024-02-01T00:00:00Z\"\n      },\n      \"RecordCount\": {\n        \"TotalRecordsFound\": 0,\n        \"StartingRecord\": 1,\n        \"RecordsReturned\": 10\n      },\n      \"Payload\": {}\n}\n\n
\n

Requests without the x-mv-api-version header will default to use the 1.0 version.

\n

Supported API Versions

\n

The following REST API versions are currently supported:

\n\n

Upgrading to a new API Version

\n

Before updating your integration to specify an API version using the x-mv-api-version header, it is advisable to review the Changelog. This will help you understand the changes in the version, allowing you to ensure the compatibility of your existing code or take appropriate actions to update it accordingly.

\n","_postman_id":"d1a4ff35-d5fa-4f3e-a5c1-6ec7ecb9fa5c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Changelogs","item":[],"id":"ef346584-8a31-4b62-9c03-63b6c3f298da","description":"

[1.2] - 06/13/2025

\n

Changed

\n

- AssetDto: Consolidated permissions structure to match other resources - now returns an array of Permissions

\n

- All endpoints: Now return 403 Forbidden instead of 401 Unauthorized when the user is authenticated but lacks permission to perform an action (authorization failure).

\n

[1.1] - 03/06/2024

\n

Changed

\n

- GET /attributes/: Includes attributes of type Status.

\n

- GET /attributes/{attributeId}: Retrieves attributes of type Status.

\n

- GET /attributes/attributeDataType: Returns new data type Status.

\n

- PATCH /assets/{assetId}: Handles the new Status type attribute.

\n

- POST /attributes: Accepts attributes of type Status. Submitting requests with attributes of type Status against previous API versions will lead to 400 (Bad Request) errors.

\n

- PUT /attributes/{attributeId}: Accepts attributes of type Status. Submitting requests with attributes of type Status against previous API versions will lead to 400 (Bad Request) errors.

\n

[1.1] - 05/22/2024

\n

Deprecated

\n

- stream and streamLoDef in AssetDto: Deprecated due to the retirement of Azure Media Services (AMS) URLs in favor of streamingManifest. Users are encouraged to migrate to the new fields as soon as possible to ensure uninterrupted functionality.

\n

Added

\n

- streamingManifest in AssetDto: URI for the streaming manifest file.
- fullStreamAvailable in AssetDto: Used to determine the availability of different stream qualities

\n

[1.0]

\n

- Initial release of the API.

\n","_postman_id":"ef346584-8a31-4b62-9c03-63b6c3f298da","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Querystring Parameters","item":[],"id":"900bddfc-e0fd-4320-8a2b-195219cc300c","description":"

These parameters can be used on any end-point within the API. They are not case sensitive.

\n

Count

\n

The count element specifies the number of records to be returned for the search.

\n

The default value is 50.

\n

To set the count, include count={long} to the query string.

\n

https://api.mediavalet.com/{entity}?filters={search}&count=25

\n

Exclude

\n

This feature has not been implemented yet.

\n

The exclude section allows for specific fields, or a list of fields to be removed from the response. When included in the request, the response will contain all fields, except the ones listed. If a field is not found, a warning is placed into the response, and the exclusion is ignored.

\n

If a field is in both the Include and the Exclude section, a 400 (Bad Request) Status Code will be returned with an explanation of the error.

\n

https://api.mediavalet.com/entity?exclude=fieldWithLotsOfData

\n

Filters

\n

For information on searching, see the search and filters document

\n

Include

\n

This feature has not been implemented yet.

\n

The include section allows for specific fields, or a list of fields to be returned. When included in the request, the response will only contain the fields listed. If a field is not found, a warning is placed into the response, and the inclusion is ignored. If there is only one field in the Include section, and that field is not found, a warning will be placed in the warning section, and an empty result set will be returned.

\n

If a field is in both the Include and the Exclude section, a 400 (Bad Request) Status Code will be returned with an explanation of the error.

\n

https://api.mediavalet.com/entity?include=id,FieldOne

\n

Max-Length

\n

This feature has not been implemented yet.

\n

The max-length element allows for truncation of fields within the response. The syntax will be max-length=field:value.

\n

It is valid to have more than one field truncated per response. Each field should be separated by a comma.

\n

When a field is not found, a warning will be placed in the warnings section, and the truncation for that field will be ignored.

\n

https://api.mediavalet.com/entity?max-length=FirstField:256,OtherField:25

\n

Offset

\n

Adding an offset entity to the querystring skips the specified number of records in the result set.

\n

The default value is 0.

\n

To set the offset, include offset={long value} to the query string.

\n

https://api.mediavalet.com/{entity}?q={search}&offset=10

\n","_postman_id":"900bddfc-e0fd-4320-8a2b-195219cc300c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Search and Filters","item":[{"name":"Search","item":[],"id":"d387c852-80af-4619-a626-d2e5b830f228","description":"

A full-text search can be performed to return all the assets that contain particular text in categories, keywords, file names, comments and descriptions.

\n

GET /assets?search=pyramid\nwill return all assets that contain pyramid in one of the fields listed above.

\n

Search Operators

\n

AND, OR and NOT are all supported boolean operators.

\n

GET /assets?search=car+plane\nwill return any assets that contain both car and plane, i.e. AND is implicit.

\n

If that's not the behaviour you would like, you can explicitly use boolean operators:

\n

GET /assets?search=car+OR+plane\nwill return assets with either car or plane

\n

GET /assets?search=car+NOT+plane\nwill return assets with car but not plane

\n

Exact Phrase Search

\n

For an exact match, place your search in-between \" \"

\n

GET /assets?search=\"good night moon\"\nwill return assets with good night moon

\n

Wildcard Search

\n

The wildcard search is supported by adding * before or after the word you are looking for:

\n

GET /assets?search=flag*\nwill return all results like flags, flagging, flagger, Flaggington, Flagstaff, etc.

\n

Search in Specific Fields

\n

If you want to search in specific fields to narrow your search there are two ways to do it. You can match search fields to search terms in ?search= querystring or you can define search fields in ?searchFields= querystring to limit your whole search to some specific fields. The following are currently supported and can be used in ?search= querystring:

\n\n","_postman_id":"d387c852-80af-4619-a626-d2e5b830f228","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Filters","item":[],"id":"f770f8d9-eb50-44e8-9ff0-d706a2dc9953","description":"

Filtering is done by adding a ?filters= querystring element to any get request. Filters requires an exact match of the filter term against field. When using alongside search, filters are applied before search, so you can also use them to filter out assets you don't need to perform the search on.

\n

Equality Operators

\n

The following equality operators are available to use within the filter:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
OperatorC Language EquivalentNotes
EQ==
NE=!
LT<not strings
GT>not strings
LE<=not strings
GE>=not strings
CTContainsnot strings
SWStartsWithnot strings
EWEndsWithnot strings
\n

Simple Query

\n

The simplest query is one field/value pair:

\n

GET /assets?filters=AverageRating+eq+4 will return all available assets that have an average rating of 4

\n

Join Operators and Multiple Statements

\n

There are two ways to join queries together: AND or OR. It is possible to string multiple operations together:

\n

GET /assets?filters=AverageRating+GE+3+AND+AverageRating+LE+5 will return all assets that have a rating >= 3 and <= 5

\n

Nesting

\n

Our API also understands brackets to change the order of operations:

\n

GET /assets?filters=(AverageRating+EQ+4+OR+AverageRating+EQ+5)+AND+Status+EQ+0 will return all assets that have an average rating of 4 or 5 and a status of 0

\n

It is valid to have more than one set of brackets within the request, as long as both opening and closing brackets are present:

\n

filters=((A OR B) AND C ) OR D

\n

Case Sensitivity

\n

Field names are not case sensitive. Values are not case sensitive.

\n

Available Filters

\n

The following Filters are currently supported:

\n\n

Search in Category

\n

Searching in a specific category or lightbox is possible by using the ANY operator within a ?containerFilter

\n

Assuming that 91de5383-5144-4b50-8745-bdeedcde4e93 is the category id you want to filter by:

\n

GET /assets?containerFilter=(CategoryIds/ANY(c: c EQ '91de5383-5144-4b50-8745-deedcde4e93')&filters=(AssetType+EQ+Image)+AND+(AverageRating+EQ+5) will return assets within the category specified that are both images and have an average rating of 5.

\n

Search in Category and Nested Categories

\n

Assuming that you want to search in the specific category with the id 91de5383-5144-4b50-8745-bdeedcde4e93, including all its sub-categories:

\n

GET /assets?containerFilter=(CategoryIds%2FANY(c:+c+EQ+%2791de5383-5144-4b50-8745-bdeedcde4e93%27)+OR+CategoryAncestorIds%2FANY(c:+c+EQ+%2791de5383-5144-4b50-8745-bdeedcde4e93%27))&filters=(AssetType+EQ+Image)+AND+(AverageRating+EQ+5) will return assets within the category specified or within nested categories that are both images and have an average rating of 5.

\n

Search in Lightbox

\n

Assuming that f2d39a31-15e3-41f8-abe2-cd255d7f2253 is the lightbox id you want to filter by:

\n

GET /assets?containerfilter=(LightboxIds%2FANY(l:+l+EQ+%27f2d39a31-15e3-41f8-abe2-cd255d7f2253%27))&filters=(AssetType+EQ+Image)+AND+(CognitiveColor+EQ+Blue) will return assets within the specified lightbox that are both images and have cognitive color of blue.

\n","_postman_id":"f770f8d9-eb50-44e8-9ff0-d706a2dc9953","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Facets","item":[],"id":"c3898889-1b8b-476c-8811-d0384b997b9e","description":"

GET /search/facets

\n

Will return the result of faceting your library by some predetermined set of asset fields.

\n

All existing library values for the fields are retrieved together with the number of assets for each field value.

\n

Available Facets Result Set

\n

Currently, we are only retrieving the result of faceting by file extension field. The facets call will retrieve all existing file extension values (together with the number of assets of each file extension) grouped by asset file type.

\n

In the future, we are planning to include results of faceting by fields like dimension, orientation, colour mode, aspect ratio, resolution, frame rate and bit rate.

\n

Response Example

\n
{\n  \"payload\": [\n    {\n      \"facetName\": \"imageFileExtension\",\n      \"facets\": {\n          \"JPEG\": 85,\n          \"ARW\": 1,\n          \"PNG\": 1\n      }\n    },\n    {\n      \"facetName\": \"videoFileExtension\",\n      \"facets\": {\n          \"MP4\": 10,\n          \"WMV\": 8,\n          \"AVI\": 1,\n          \"VOB\": 1\n      }\n    },\n    {\n      \"facetName\": \"audioFileExtension\",\n      \"facets\": {\n          \"M4A\": 1,\n          \"MP3\": 1\n      }\n    },\n    {\n      \"facetName\": \"adobeFileExtension\",\n      \"facets\": {\n          \"AI\": 2\n      }\n    },\n    {       \"facetName\": \"wordFileExtension\",\n      \"facets\": {\n          \"DOC\": 2,\n          \"DOCX\": 1\n      }\n    },\n    {\n      \"facetName\": \"excelFileExtension\",\n      \"facets\": {\n          \"XLSX\": 1\n      }\n    },\n    {\n      \"facetName\": \"powerpointFileExtension\",\n      \"facets\": {}\n      },\n    {\n      \"facetName\": \"pdfFileExtension\",\n      \"facets\": {\n          \"PDF\": 1\n      }\n    },\n    {\n      \"facetName\": \"otherFileExtension\",\n      \"facets\": {\n          \"XML\": 2\n      }\n    }\n   ]\n}\n
","_postman_id":"c3898889-1b8b-476c-8811-d0384b997b9e","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}}],"id":"f4a8991b-c5c2-44f5-8b35-c7c62ae59b81","description":"

Search

\n

Search is done by adding a ?search= querystring to a GET request. It includes a basic search for text as well as searching in specific fields by matching specific search terms to specific fields.

\n

Searching only in specific search fields can be done by adding a ?searchFields= querystring to a GET request. It will limit your whole search text defined in ?search= to specific set of fields.

\n

Filters

\n

Filtering is done by adding a ?filters= querystring to a GET request. It requires an exact match of the filter term against field. When used alongside search, filters are applied first, so you can also use them to filter out assets you don't want to perform a search on.

\n

Facets

\n

The facets endpoint will return the result of faceting your library by a predetermined set of asset fields. All existing library values for the fields are retrieved together with the number of assets for each field value.

\n","_postman_id":"f4a8991b-c5c2-44f5-8b35-c7c62ae59b81","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"PATCH Requests","item":[],"id":"09bb0c8b-0486-48ba-85a1-458756e7dd9d","description":"

Patches are to follow the IETF standard.

\n

The body of a patch request consists of a set of changes that are to be applied to an entity. There are 6 acceptable instructions: Add, Remove, Update, Test, Move, and Copy.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InstructionSummary
AddAdds a value to the specified field in the entity.
RemoveRemoves the value of the specified field. The value will return to the default value.
ReplaceUpdates the value of the specified field.
TestTests whether the value of the specified field is equal to the value in the request.
MoveMoves the value from one field to another.
CopyCopies the value from one field to another.
\n

Request

\n

The request must have a content-type of application/json-patch+json and a Http Action of PATCH.

\n

The body consists of a list of changes to apply to the entity:

\n
[\n    { \"op\": \"test\", \"path\": \"/a/b/c\", \"value\": \"foo\" },\n    { \"op\": \"remove\", \"path\": \"/a/b/c\" },\n    { \"op\": \"add\", \"path\": \"/a/b/c\", \"value\": [ \"foo\", \"bar\" ] },\n    { \"op\": \"replace\", \"path\": \"/a/b/c\", \"value\": 42, \"oldValue\": 31 },\n    { \"op\": \"move\", \"from\": \"/a/b/c\", \"path\": \"/a/b/d\" },\n    { \"op\": \"copy\", \"from\": \"/a/b/d\", \"path\": \"/a/b/e\" }\n]\n

If \"op\" is entered as any value other than an accepted instruction, or if a required field is missing from an instruction the line will be ignored, and an error will be added to the response.

\n

If a field that is not needed has a value in it, a warning is added to the response, but the instruction is executed.

\n","_postman_id":"09bb0c8b-0486-48ba-85a1-458756e7dd9d","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"SkyHOOK","item":[{"name":"Event Types","item":[{"name":"Asset.StatusUpdated","item":[],"id":"785ad94c-f351-4cb6-8955-a767b71dec51","description":"
{\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"source\": \"00000000-0000-0000-0000-000000000000\",\n    \"type\": \"Asset.StatusUpdated\",\n    \"data\": {\n        \"LibraryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"AssetId\": \"00000000-0000-0000-0000-000000000000\",\n        \"CurrentVersion\": \"00000000-0000-0000-0000-000000000000\",\n        \"FileName\": \"file-name.png\",\n        \"Status\": \"Approved\"\n    },\n    \"time\": \"2022-05-04T20:49:57.8570052+00:00\",\n    \"specversion\": \"1.0\",\n    \"dataschema\": \"#\",\n    \"subject\": \"/library/00000000-0000-0000-0000-000000000000/assets/00000000-0000-0000-0000-000000000000/Asset.StatusUpdated\",\n    \"contenttype\": \"application/json\"\n}\n\n
\n","_postman_id":"785ad94c-f351-4cb6-8955-a767b71dec51","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Asset.MediaFileAdded","item":[],"id":"0cda52be-d19e-4e28-8eef-14030f5e20d3","description":"
{\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"source\": \"00000000-0000-0000-0000-000000000000\",\n    \"type\": \"Asset.MediaFileAdded\",\n    \"data\": {\n        \"LibraryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"AssetId\": \"00000000-0000-0000-0000-000000000000\",\n        \"Version\": 29,\n        \"FileName\": \"samplefile.png\",\n        \"FileSize\": 43249,\n        \"Reason\": \"FromUploadProcess\",\n        \"CreatedAt\": \"2022-05-04T20:48:48.4938572+00:00\",\n        \"MediaFileBlobUrl\": \"https://media-file-blob-url\"\n    },\n    \"time\": \"2022-05-04T20:49:07.3550538+00:00\",\n    \"specversion\": \"1.0\",\n    \"dataschema\": \"#\",\n    \"subject\": \"/library/00000000-0000-0000-0000-000000000000/assets/00000000-0000-0000-0000-000000000000/MediaFile.FromUploadProcess\",\n    \"contenttype\": \"application/json\"\n}\n\n
\n","_postman_id":"0cda52be-d19e-4e28-8eef-14030f5e20d3","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Category.AssetsAssigned","item":[],"id":"7c1879ad-c354-4752-874d-a6266d0e2212","description":"
{\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"source\": \"00000000-0000-0000-0000-000000000000\",\n    \"type\": \"Category.AssetsAssigned\",\n    \"data\": {\n        \"AssetIds\": [\n            \"00000000-0000-0000-0000-000000000000\"\n        ],\n        \"CategoryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"LibraryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"Name\": \"Category\"\n    },\n    \"time\": \"2022-05-04T20:50:02.4156612+00:00\",\n    \"specversion\": \"1.0\",\n    \"dataschema\": \"#\",\n    \"subject\": \"/library/00000000-0000-0000-0000-000000000000/category/00000000-0000-0000-0000-000000000000/Category.AssetsAssigned\",\n    \"contenttype\": \"application/json\"\n}\n\n
\n","_postman_id":"7c1879ad-c354-4752-874d-a6266d0e2212","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Category.AssetUnassigned","item":[],"id":"cf6ca05c-5691-43f0-8333-8a1ed4c0e2f9","description":"
{\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"source\": \"00000000-0000-0000-0000-000000000000\",\n    \"type\": \"Category.AssetUnassigned\",\n    \"data\": {\n        \"AssetId\": \"00000000-0000-0000-0000-000000000000\",\n        \"CategoryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"LibraryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"Name\": \"Category\"\n    },\n    \"time\": \"2022-05-04T20:54:39.564771+00:00\",\n    \"specversion\": \"1.0\",\n    \"dataschema\": \"#\",\n    \"subject\": \"/library/00000000-0000-0000-0000-000000000000/category/00000000-0000-0000-0000-000000000000/Category.AssetUnassigned\",\n    \"contenttype\": \"application/json\"\n}\n\n
\n","_postman_id":"cf6ca05c-5691-43f0-8333-8a1ed4c0e2f9","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Asset.KeywordsAdded","item":[],"id":"f7ffe305-81f0-4246-b737-663df889b932","description":"
{\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"source\": \"00000000-0000-0000-0000-000000000000\",\n    \"type\": \"Asset.KeywordsAdded\",\n    \"data\": {\n        \"AssetId\": \"00000000-0000-0000-0000-000000000000\",\n        \"LibraryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"Keywords\": [\n            {\n                \"Id\": \"00000000-0000-0000-0000-000000000000\",\n                \"Value\": \"Value\",\n                \"KeywordGroup\": {\n                    \"Id\": \"00000000-0000-0000-0000-000000000000\",\n                    \"Name\": \"Keyword\",\n                    \"Path\": \"/Keyword\",\n                    \"ParentKeywordGroupId\": \"00000000-0000-0000-0000-000000000000\"\n                },\n                \"ApprovalStatus\": 1,\n                \"CreatedDateTime\": \"2021-01-28T11:37:29.3963341Z\",\n                \"CreatedBy\": \"00000000-0000-0000-0000-000000000000\",\n                \"ApprovedDateTime\": \"2021-01-28T11:37:29.3963341Z\",\n                \"ApprovedBy\": \"00000000-0000-0000-0000-000000000000\"\n            }\n        ]\n    },\n    \"time\": \"2022-05-04T20:49:09.4204099+00:00\",\n    \"specversion\": \"1.0\",\n    \"dataschema\": \"#\",\n    \"subject\": \"/library/00000000-0000-0000-0000-000000000000/assets/00000000-0000-0000-0000-000000000000/Asset.KeywordsAdded\",\n    \"contenttype\": \"application/json\"\n}\n\n
\n","_postman_id":"f7ffe305-81f0-4246-b737-663df889b932","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Asset.AttributesAdded","item":[],"id":"d227f8d4-e083-4101-af5e-0b891f66e731","description":"
{\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"source\": \"00000000-0000-0000-0000-000000000000\",\n    \"type\": \"Asset.AttributesAdded\",\n    \"data\": {\n        \"LibraryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"AssetId\": \"00000000-0000-0000-0000-000000000000\",\n        \"Attributes\": [\n            {\n                \"Id\": \"00000000-0000-0000-0000-000000000000\",\n                \"Name\": \"Attribute A\",\n                \"EmbeddedDataValue\": \"Value A\"\n            },\n            {\n                \"Id\": \"00000000-0000-0000-0000-000000000000\",\n                \"Name\": \"Attribute B\",\n                \"EmbeddedDataValue\": \"Value B\"\n            }\n        ]\n    },\n    \"time\": \"2022-05-04T20:50:01.1303773+00:00\",\n    \"specversion\": \"1.0\",\n    \"dataschema\": \"#\",\n    \"subject\": \"/library/00000000-0000-0000-0000-000000000000/assets/00000000-0000-0000-0000-000000000000/Asset.AttributesAdded\",\n    \"contenttype\": \"application/json\"\n}\n\n
\n","_postman_id":"d227f8d4-e083-4101-af5e-0b891f66e731","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Asset.VideoRenditionsAdded","item":[],"id":"1acc3fdf-eaa1-4947-a429-0d6664529246","description":"
{\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"source\": \"00000000-0000-0000-0000-000000000000\",\n    \"type\": \"Asset.VideoRenditionsAdded\",\n    \"data\": {\n        \"LibraryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"AssetId\": \"00000000-0000-0000-0000-000000000000\",\n        \"Renditions\": [\n            {\n                \"DestinationUrl\": \"https://file-blob-url\",\n                \"Audio\": {\n                    \"Bitrate\": 56,\n                    \"CodecSettings\": {\n                        \"Name\": \"aac\",\n                        \"Encoder\": \"libfdk_aac\"\n                    },\n                    \"SamplingRate\": null,\n                    \"Channels\": null\n                },\n                \"Video\": null,\n                \"RenditionKindId\": \"00000000-0000-0000-0000-000000000000\"\n            },\n            {\n                \"DestinationUrl\": \"https://file-blob-url\",\n                \"Audio\": {\n                    \"Bitrate\": 192,\n                    \"CodecSettings\": {\n                        \"Name\": \"aac\",\n                        \"Encoder\": \"libfdk_aac\"\n                    },\n                    \"SamplingRate\": null,\n                    \"Channels\": null\n                },\n                \"Video\": null,\n                \"RenditionKindId\": \"00000000-0000-0000-0000-000000000000\"\n            }\n        ]\n    },\n    \"time\": \"2022-05-04T20:58:14.2579692+00:00\",\n    \"specversion\": \"1.0\",\n    \"dataschema\": \"#\",\n    \"subject\": \"/library/00000000-0000-0000-0000-000000000000/assets/00000000-0000-0000-0000-000000000000/Asset.VideoRenditionsAdded\",\n    \"contenttype\": \"application/json\"\n}\n\n
\n","_postman_id":"1acc3fdf-eaa1-4947-a429-0d6664529246","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"Asset.KeywordRemoved","item":[],"id":"fe9ee7b2-96e6-4cd3-a4c7-ecabb8dfa23b","description":"
{\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"source\": \"00000000-0000-0000-0000-000000000000\",\n    \"type\": \"Asset.KeywordRemoved\",\n    \"data\": {\n        \"AssetId\": \"00000000-0000-0000-0000-000000000000\",\n        \"LibraryId\": \"00000000-0000-0000-0000-000000000000\",\n        \"Keyword\": {\n            \"Id\": \"00000000-0000-0000-0000-000000000000\",\n            \"Value\": \"Value\",\n            \"KeywordGroup\": {\n                \"Id\": \"00000000-0000-0000-0000-000000000000\",\n                \"Name\": \"Keyword\",\n                \"Path\": \"/Keyword\",\n                \"ParentKeywordGroupId\": \"00000000-0000-0000-0000-000000000000\"\n            },\n            \"ApprovalStatus\": 1,\n            \"CreatedDateTime\": \"2019-11-27T07:03:31.4668906Z\",\n            \"CreatedBy\": \"00000000-0000-0000-0000-000000000000\",\n            \"ApprovedDateTime\": \"2019-11-27T07:07:45.5815572Z\",\n            \"ApprovedBy\": \"00000000-0000-0000-0000-000000000000\"\n        }\n    },\n    \"time\": \"2022-05-04T20:54:36.863018+00:00\",\n    \"specversion\": \"1.0\",\n    \"dataschema\": \"#\",\n    \"subject\": \"/library/00000000-0000-0000-0000-000000000000/assets/00000000-0000-0000-0000-000000000000/Asset.KeywordRemoved\",\n    \"contenttype\": \"application/json\"\n}\n\n
\n","_postman_id":"fe9ee7b2-96e6-4cd3-a4c7-ecabb8dfa23b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}}],"id":"06fa5641-68ca-419f-a692-fd588c0c4dd6","description":"

Available Event Types

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
Asset.StatusUpdatedAsset Status has been updated.
Asset.MediaFileAddedAsset Mediafile been added.
Category.AssetsAssignedAsset has been assigned to a Category.
Category.AssetUnassignedAsset has been unassigned to a Category.
Asset.KeywordsAddedKeyword has been added to an Asset.
Asset.AttributesAddedAttribute has been added to an Asset.
Asset.VideoRenditionsAddedVideo Asset Rendition has been added.
Asset.KeywordRemovedKeyword has been removed form an Asset.
\n
","_postman_id":"06fa5641-68ca-419f-a692-fd588c0c4dd6","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}}],"id":"aaa79ccc-42c2-45c9-acbc-185b00d8354c","description":"

Introduction
SkyHOOK is an enterprise level application that allows you to subscribe to events from MediaValet. You can receive the event messages directly to your own endpoint or if you prefer, the event message can be sent to a private Azure Event Grid instance.

\n","_postman_id":"aaa79ccc-42c2-45c9-acbc-185b00d8354c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}},{"name":"How to samples","item":[{"name":"Asset Uploads","item":[{"name":"How to upload big files","item":[],"id":"45e5b914-71b4-4326-8c05-5f2cfd6f5537","description":"

How can I upload files larger than 64MB?

\n

Uploading large files to MediaValet requires chunked uploads, as single uploads are typically limited to 64MB. To handle this efficiently, we recommend using the official Microsoft Azure Storage SDKs, which automatically manage chunked file transfers.

\n

📖 Microsoft's Choose an Azure solution for data transfer: Choose an Azure solution for data transfer

\n

How to do it with C#

\n

📌 Example in C#: MediaValet Large File Upload Example with C#
📖 Microsoft's Official SDK Documentation: Azure Storage Blobs SDK for .NET

\n","_postman_id":"45e5b914-71b4-4326-8c05-5f2cfd6f5537","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}}],"id":"31d3288b-284b-4548-840e-061fd705f399","_postman_id":"31d3288b-284b-4548-840e-061fd705f399","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}}],"id":"99b233cb-9792-4244-b706-d7309bdca3c9","_postman_id":"99b233cb-9792-4244-b706-d7309bdca3c9","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","id":"6222a397-45bd-42ff-86d2-2436f1576ca0","name":"General Information","type":"folder"}}}],"id":"6222a397-45bd-42ff-86d2-2436f1576ca0","auth":{"type":"noauth","isInherited":false},"_postman_id":"6222a397-45bd-42ff-86d2-2436f1576ca0","description":""},{"name":"How To Guides","item":[{"name":"Setup/Helpers","item":[{"name":"Clear Upload File Variables","event":[{"listen":"prerequest","script":{"id":"237d7d7e-6919-4168-a7cf-064773d762d6","exec":["pm.environment.unset(\"fileName\");\r","pm.environment.unset(\"azureUploadUrl\");\r","pm.environment.unset(\"uploadId\");"],"type":"text/javascript"}}],"id":"534e4602-146c-48b9-9925-bc76295c8a09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://postman-echo.com/get","description":"

Clear all the environment dynamic variables sets in the Upload Step.

\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"87318c40-7674-4084-9293-a27ece5d35ea","id":"87318c40-7674-4084-9293-a27ece5d35ea","name":"Setup/Helpers","type":"folder"}},"urlObject":{"protocol":"https","path":["get"],"host":["postman-echo","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"534e4602-146c-48b9-9925-bc76295c8a09"},{"name":"Set Upload File Name","event":[{"listen":"prerequest","script":{"id":"50f4c1b7-efdc-4dfa-99ac-3332cc56a031","exec":["postman.setEnvironmentVariable(\"fileName\", \"\");"],"type":"text/javascript"}}],"id":"ff14892b-ab18-450d-b293-b787859b6b40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://postman-echo.com/get","description":"

Setup the filename of the file that you will upload in the Upload Asset step.

\n

Example:

\n
postman.setEnvironmentVariable(\"file-name\", \"company-logo.jpg\");\n
","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"87318c40-7674-4084-9293-a27ece5d35ea","id":"87318c40-7674-4084-9293-a27ece5d35ea","name":"Setup/Helpers","type":"folder"}},"urlObject":{"protocol":"https","path":["get"],"host":["postman-echo","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff14892b-ab18-450d-b293-b787859b6b40"}],"id":"87318c40-7674-4084-9293-a27ece5d35ea","description":"

This folder contains useful requests to help facilitate execution of assets related API call.

\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"e86cf140-9489-45e6-8765-ebcefc21ac86","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"369946ab-1c43-4189-93bb-20a5fe7161c6","type":"text/javascript","exec":[""]}}],"_postman_id":"87318c40-7674-4084-9293-a27ece5d35ea"},{"name":"How to Upload an Asset","item":[{"name":"01. Request Upload URL","event":[{"listen":"test","script":{"id":"8ca0371c-3221-4676-bf60-6aea60d44865","exec":["var jsonData = JSON.parse(responseBody);\r","postman.setEnvironmentVariable(\"azureUploadUrl\", jsonData.payload.uploadUrl);\r","postman.setEnvironmentVariable(\"uploadId\", jsonData.payload.id);"],"type":"text/javascript"}}],"id":"3e1c34e4-4270-43d4-9ce5-6b7f2718a59d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"filename\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/uploads","description":"

POST to the upload resource. This creates a holding record and creates the Shared Access Signature (SAS) URL for the user to upload the file to. The SAS url allows temporary write access to BLOB storage.

\n

Request

\n
{\n    \"filename\": \"MyImage.jpg\"\n}\n

Response

\n

The response from the POST consists of the Asset Identifier, the temporary file name, and the upload url.

\n\n
{\n    \"id\":\"2c6b34da-c2fd-41ea-84ee-3ab32219b591\",\n    \"uploadUrl\":\"[Shared Access Signature URL]\",\n    \"uploadFilename\":\"2c6b34da-c2fd-41ea-84ee-3ab32219b591.bin\"\n}\n
","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"05debea0-5e52-4ed9-80b2-6a9279da7409","name":"The asset was successfully created.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"fileSizeInBytes","value":"82275142"},{"description":"File name","key":"filename","value":"labore dolore"},{"description":"File Name Versioning flag","key":"fileNameVersioning","value":"false"}]},"url":"https://api.mediavalet.com/uploads"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"uploadUrl\": \"laboris dolore tempor eu\",\n \"uploadFileName\": \"labore ullamco aute\",\n \"mediaFileId\": \"00000000-0000-0000-0000-000000000000\",\n \"_links\": {\n \"self\": \"occaecat minim\",\n \"functions\": [\n \"esse\",\n \"ex\"\n ]\n }\n}"},{"id":"906e1ee0-0895-43c5-bd71-a194ef2c90a2","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"fileSizeInBytes","value":"82275142"},{"description":"File name","key":"filename","value":"labore dolore"},{"description":"File Name Versioning flag","key":"fileNameVersioning","value":"false"}]},"url":"https://api.mediavalet.com/uploads"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"b5c5c311-45b3-4f13-a4c9-3e67de88a98f","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"fileSizeInBytes","value":"82275142"},{"description":"File name","key":"filename","value":"labore dolore"},{"description":"File Name Versioning flag","key":"fileNameVersioning","value":"false"}]},"url":"https://api.mediavalet.com/uploads"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"304ca676-7d6e-46d6-b470-4ef17920eafd","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"fileSizeInBytes","value":"82275142"},{"description":"File name","key":"filename","value":"labore dolore"},{"description":"File Name Versioning flag","key":"fileNameVersioning","value":"false"}]},"url":"https://api.mediavalet.com/uploads"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3e1c34e4-4270-43d4-9ce5-6b7f2718a59d"},{"name":"02. Upload File","id":"2bad448b-5d35-43f5-87d5-cf7bafdd441a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"x-ms-blob-type","value":"BlockBlob","type":"text"}],"body":{"mode":"file","file":{"src":""}},"url":"{{azureUploadUrl}}","description":"

This step requires the user to upload the file to blob storage in Azure using the SAS URL provided in the POST step. The upload is accomplished by issuing a PUT, or a number of PUT request to the SAS URL with the binary segments of the file as the body. It is important to note, the SAS URL expires after 24 hours and another will have to be requested at that point.

\n

There are a few key points to this upload.

\n
    \n
  • Maximum file size Azure supports is 200GB.\nIf the file is over 64 MB, it must be broken up into segments.
  • \n
  • The maximum segment size is 64 MB, but MediaValet recommends using much smaller segments.
  • \n
\n","urlObject":{"host":["{{azureUploadUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2bad448b-5d35-43f5-87d5-cf7bafdd441a"},{"name":"03. Add Title/Description/FileSize","id":"d0d878cc-9191-4854-aa9e-d7026a28c109","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"filename\": \"\",\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"fileSizeInBytes\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId","description":"

This step allows the user to (optionally) supply a description to each asset being uploaded as well as change the default title. By default the system will use the filename (without file extension) as the asset title.

\n

Note: It is important to supply the original file size in this step. In order to supply a title, description and fileSizeinBytes upload the PUT end-point is available.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"type":"any","value":"{{uploadId}}","key":"assetId"}]}},"response":[{"id":"04e0575f-03d0-4d5e-beff-605983798736","name":"Request was successful.","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"filename","value":"reprehenderit est veli"},{"key":"title","value":"ut irure enim esse cupidatat"},{"key":"description","value":"anim reprehenderit consectetur eu"},{"key":"fileSizeInBytes","value":"91839320"}]},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"uploadUrl\": \"consectetur amet reprehenderit qui aliquip\",\n \"uploadFileName\": \"aute in anim\",\n \"mediaFileId\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"esse dolor non\",\n \"description\": \"dolor commodo esse culpa nulla\",\n \"fileSizeInBytes\": -77460389,\n \"_links\": {\n \"self\": \"fugiat ad\",\n \"functions\": [\n \"consequat laborum\",\n \"minim ea non\"\n ]\n }\n}"},{"id":"289b1d12-32f3-4951-a0e6-b27621e84636","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"filename","value":"reprehenderit est veli"},{"key":"title","value":"ut irure enim esse cupidatat"},{"key":"description","value":"anim reprehenderit consectetur eu"},{"key":"fileSizeInBytes","value":"91839320"}]},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e6bd4650-920d-43f7-9a38-3f8cb185b15e","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"filename","value":"reprehenderit est veli"},{"key":"title","value":"ut irure enim esse cupidatat"},{"key":"description","value":"anim reprehenderit consectetur eu"},{"key":"fileSizeInBytes","value":"91839320"}]},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c9c6973a-3c52-430a-bf9e-65c964a11f27","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"filename","value":"reprehenderit est veli"},{"key":"title","value":"ut irure enim esse cupidatat"},{"key":"description","value":"anim reprehenderit consectetur eu"},{"key":"fileSizeInBytes","value":"91839320"}]},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d0d878cc-9191-4854-aa9e-d7026a28c109"},{"name":"04. Assign Asset to the Category","id":"6e9cdaab-80de-456b-9f7d-5819c4b1fcb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"[\r\n /* List of Category IDs to add the upload to. */\r\n \"\",\r\n \"\"\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId/categories","description":"

The step forces the user to apply at least one category to each asset being uploaded.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId","categories"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"type":"any","value":"{{uploadId}}","key":"assetId"}]}},"response":[{"id":"c97c9cef-9d99-4a13-a2b3-e9f92daf38d0","name":"Asset successfully associated with list of categories.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"in proident"},{"key":"1","value":"cillum et proident aliquip"}]},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/categories","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n \"fugiat ut dolore\",\n \"ut dolor\"\n]"},{"id":"0b5b1368-fe0a-4c80-bce5-4e16543ff35c","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"in proident"},{"key":"1","value":"cillum et proident aliquip"}]},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/categories","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f902f608-9545-426b-ad60-56a779a8d639","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"in proident"},{"key":"1","value":"cillum et proident aliquip"}]},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/categories","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6e9cdaab-80de-456b-9f7d-5819c4b1fcb2"},{"name":"05. Finalize Upload","id":"45f14489-1b14-43db-9d10-9eccf6f8047c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"[{\"op\":\"replace\",\"path\":\"/status\",\"value\":1}]","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId","description":"

The final step is mainly a confirmation that the assets were successfully uploaded. After this, the system needs to render thumbnails and otherwise process the assets. This may take some time depending on overall load of the system and how many assets were added. In order to finalize the upload, the PATCH end-point is available.

\n

PATCH\nThe PATCH request finalizes the upload. PATCH indicates that the upload is ready for processing with the ReadyForProcessing status update. Before it starts processing, the finalize upload patch end-point applies the pre-flight check which validates the following parameters:

\n
    \n
  1. If the file size in Blob storage does not match the file size submitted, a 404(Not Found - Upload of [SAS] failed) is returned as the status of the request.
  2. \n
  3. If file name has invalid characters, a 400(Bad Request) is returned as the status of the request.
  4. \n
  5. At least one category must be assigned to the Asset, otherwise a 400(Bad Request) is returned as the status of the request.
  6. \n
  7. All required attributes should match, otherwise a 400(Bad Request) is returned as the status of the request.
  8. \n
\n

The PATCH request sends instructions on updating single fields. There can be more than one instruction per request, but each instruction should do something to a single field.

\n

PATCH will not work if the asset is in the Uploading state.

\n

The fields that are accepted for PATCH are:

\n
    \n
  • Title
  • \n
  • Description
  • \n
  • FileSizeInBytes
  • \n
  • Filename
  • \n
  • Status (ReadyForProcessing)
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"type":"any","value":"{{uploadId}}","key":"assetId"}]}},"response":[{"id":"06609a13-ed1d-4e5a-becd-5d96e10b669f","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"_links\": {\n \"self\": \"dolor\",\n \"functions\": [\n \"Excepteur cupidatat\",\n \"est ea\"\n ]\n }\n}"},{"id":"3b9c9c7b-96ee-4b93-bb0a-fdc32804c0ec","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"373df5d3-de8d-47f9-8aed-7ecf5a17ab89","name":"The asset was not found.","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"45f14489-1b14-43db-9d10-9eccf6f8047c"}],"id":"bbbc0b64-1707-4d3c-8de3-e244ab0b3cd6","description":"

The initial POST to /uploads will create an asset record with a status of \"Uploading\". This will create a holder record the user can work against for the upload. The values of the record can be sent, but they are not required as they will be overwritten in the PUT request after the file is uploaded.

\n

Data will not be verified in this POST, but will be done in the final PATCH end-point. This is because uploading an asset is a 4 step process.

\n
    \n
  1. POST to the upload resource. This creates a holding record and creates the Shared Access Signature (SAS) URL for the user to upload the file to. The SAS url allows temporary write access to BLOB storage.

    \n
  2. \n
  3. Upload the file using the SAS URL.

    \n
  4. \n
  5. PUT the upload to the Assets resource.

    \n
  6. \n
  7. Assign asset to the category.

    \n
  8. \n
  9. PATCH the upload. This step will check to see if the file needs to be renamed, and trigger any events needed by the back-end. It will also run data verification on the asset.

    \n
  10. \n
\n

Frequently Asked Questions

\n\n","_postman_id":"bbbc0b64-1707-4d3c-8de3-e244ab0b3cd6","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"How to Create a New Asset Version","item":[{"name":"01. Set Asset to Checkout","event":[{"listen":"prerequest","script":{"id":"df4af31b-aa01-4068-bc73-ea8bed6c2662","exec":["postman.setEnvironmentVariable(\"assetId\", \"\");"],"type":"text/javascript"}}],"id":"ed5d139a-6ced-47e0-8ab0-9b7089523f92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"}],"url":"https://postman-echo.com/get","description":"

Set the asset id of the asset you want to checkout (create a new version).

\n

Example

\n
postman.setEnvironmentVariable(\"asset-id\", \"82d57c66-6da6-4f31-a7c3-eca0ea09a86a\");\n
","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"protocol":"https","path":["get"],"host":["postman-echo","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ed5d139a-6ced-47e0-8ab0-9b7089523f92"},{"name":"02. Checkout Asset","id":"6d662e86-13ef-4662-b2fe-0d0907f85069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"[\"\"]","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/checkOut","description":"

Perform a checkout to the asset that you want to create a new version with and add some comments.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","checkOut"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"d3339e42-11d2-4c1e-9177-78ad80982dc8","name":"Request was accepted.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"in proident"},{"key":"1","value":"cillum et proident aliquip"}]},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/checkOut","host":["https://api.mediavalet.com"],"path":["assets",":assetId","checkOut"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"dolor\""},{"id":"6231e874-cc6d-4ae3-99bb-3047c2c62f89","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"in proident"},{"key":"1","value":"cillum et proident aliquip"}]},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/checkOut","host":["https://api.mediavalet.com"],"path":["assets",":assetId","checkOut"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"410c886d-95de-41a8-9b68-66734538de80","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"in proident"},{"key":"1","value":"cillum et proident aliquip"}]},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/checkOut","host":["https://api.mediavalet.com"],"path":["assets",":assetId","checkOut"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6d662e86-13ef-4662-b2fe-0d0907f85069"},{"name":"03. Validate Asset Checkin","id":"d7cf923f-17b0-49f8-8709-a985ad290a6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{{filename}}","options":{"raw":{"language":"javascript"}}},"url":"https://api.mediavalet.com/assetCheckIn/:id/validate","description":"

Validate the asset filename of the asset you want to upload.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assetCheckIn",":id","validate"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"f8ec0b0a-a128-4ba3-a53a-d5c4626a574e","name":"Request was successful.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"d"},{"key":"1","value":"o"},{"key":"2","value":"l"},{"key":"3","value":"o"},{"key":"4","value":"r"}]},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"dolor\""},{"id":"411bd8ad-7c30-44cc-955e-60a7ac8cad46","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"d"},{"key":"1","value":"o"},{"key":"2","value":"l"},{"key":"3","value":"o"},{"key":"4","value":"r"}]},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"15b99ad9-daa1-41a5-a329-5f396a360d35","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"d"},{"key":"1","value":"o"},{"key":"2","value":"l"},{"key":"3","value":"o"},{"key":"4","value":"r"}]},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"9397845e-d622-4f49-85f3-9dc2022cbe27","name":"The asset with the supplied file name already exists.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"d"},{"key":"1","value":"o"},{"key":"2","value":"l"},{"key":"3","value":"o"},{"key":"4","value":"r"}]},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c1b5eb22-0a13-4dda-b480-ceff445157d2","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"d"},{"key":"1","value":"o"},{"key":"2","value":"l"},{"key":"3","value":"o"},{"key":"4","value":"r"}]},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d7cf923f-17b0-49f8-8709-a985ad290a6d"},{"name":"04. Request Upload URL","event":[{"listen":"prerequest","script":{"id":"cf8e83e1-cb1b-4633-86db-b179e9642b7b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"7b452038-0cf6-4e9e-a161-6a2f881180de","exec":["var jsonData = JSON.parse(responseBody);\r","postman.setEnvironmentVariable(\"azureUploadUrl\", jsonData.payload.uploadUrl);\r","postman.setEnvironmentVariable(\"uploadId\", jsonData.payload.id);"],"type":"text/javascript"}}],"id":"493bce7d-f2c4-4671-999a-465e507da784","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"url":"https://api.mediavalet.com/assetCheckIn/:assetId","description":"

Request for an upload URL of the new asset version to upload. This automatically sets the environment URL for the upload request.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assetCheckIn",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"84919431-feb2-4743-83c0-f209616d4da8","name":"Request was accepted.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"uploadUrl\": \"consectetur amet reprehenderit qui aliquip\",\n \"uploadFileName\": \"aute in anim\",\n \"mediaFileId\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"esse dolor non\",\n \"description\": \"dolor commodo esse culpa nulla\",\n \"fileSizeInBytes\": -77460389,\n \"_links\": {\n \"self\": \"fugiat ad\",\n \"functions\": [\n \"consequat laborum\",\n \"minim ea non\"\n ]\n }\n}"},{"id":"8a4adf21-b7de-48c3-852b-324ecf730baf","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"493bce7d-f2c4-4671-999a-465e507da784"},{"name":"05. Upload File","id":"0d041394-e541-4625-a914-d2281cbdc0b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"x-ms-blob-type","value":"BlockBlob","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"}],"body":{"mode":"file","file":{"src":""}},"url":"{{azureUploadUrl}}","description":"

This step requires the user to upload the file to blob storage in Azure using the SAS URL provided in the POST step. The upload is accomplished by issuing a PUT, or a number of PUT request to the SAS URL with the binary segments of the file as the body. It is important to note, the SAS URL expires after 24 hours and another will have to be requested at that point.

\n

There are a few key points to this upload.

\n
    \n
  • Maximum file size Azure supports is 200GB.\nIf the file is over 64 MB, it must be broken up into segments.
  • \n
  • The maximum segment size is 64 MB, but MediaValet recommends using much smaller segments.
  • \n
\n","urlObject":{"host":["{{azureUploadUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d041394-e541-4625-a914-d2281cbdc0b5"},{"name":"06. Finalize Upload/Set Asset Metadata","id":"77883ab3-b8f7-4e45-9cca-0d72024ece09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"comment\": \"string\",\r\n \"status\": 0,\r\n \"fileSizeInBytes\": 0,\r\n \"fileName\": \"string\",\r\n \"uploadFilename\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/assetCheckIn/:assetId?priority=high","description":"

Finalize the upload by setting the asset's metadata.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assetCheckIn",":assetId"],"host":["https://api.mediavalet.com"],"query":[{"key":"priority","value":"high"}],"variable":[{"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"82b606a4-0c7b-4185-b0a7-eaddf14e1c8c","name":"Request was accepted.","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Gets or sets the comment.","key":"comment","value":"esse ad eiusm"},{"description":"Gets or sets the status.","key":"status","value":"-74620316"},{"description":"The size of the original file this asset represents.","key":"fileSizeInBytes","value":"-78434360"},{"description":"The name of the file uploaded","key":"uploadFilename","value":"occaecat sint"},{"description":"FileName of the asset.","key":"fileName","value":"in sit Excepteur"},{"description":"The name of the file uploaded","key":"uploadUrl","value":"adipisicing tempor Ut"}]},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"et id nisi\",\n \"media\": {\n \"type\": \"in Lorem et\",\n \"small\": \"amet fugiat\",\n \"thumb\": \"voluptate mollit\",\n \"large\": \"veniam quis\",\n \"original\": \"fugiat laboris\",\n \"medium\": \"ad ipsum\",\n \"download\": \"sit cillum\",\n \"downloadRequest\": \"Ut consequat\",\n \"stream\": \"Lorem incididunt\",\n \"originalDimensions\": \"et commodo\",\n \"sasExpiry\": -52419261,\n \"sasRenewal\": -38816667,\n \"renditionItemCount\": -73959366,\n \"autodeskUrn\": \"tempor\",\n \"watermarked\": false\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"mollit lab\",\n \"fileName\": \"esse sed reprehenderit\",\n \"md5\": \"ex commodo aliqua quis\",\n \"fileType\": \"proident Lorem labore\",\n \"sizeInBytes\": 26575355,\n \"description\": \"quis\",\n \"keywords\": \"ipsum voluptate\",\n \"uploadedAt\": \"1978-01-05T04:44:22.931Z\",\n \"modifiedAt\": \"1967-12-17T22:33:23.496Z\",\n \"approvedAt\": \"2005-11-10T06:51:18.342Z\",\n \"disapprovedAt\": \"2009-04-23T13:29:52.554Z\",\n \"expiresAt\": \"1980-10-21T03:48:29.838Z\",\n \"imageHeight\": -72533612,\n \"imageWidth\": -38239887,\n \"frameRate\": \"officia consectetur\",\n \"length\": \"est sint\",\n \"bitRate\": \"reprehenderit\",\n \"mimeType\": \"commodo ipsum ex\",\n \"resolution\": \"culpa\",\n \"colorMode\": \"of\",\n \"aspectRatio\": \"cillum quis pariatur ullamc\",\n \"orientation\": \"commodo\"\n },\n \"description\": \"sunt in incididunt dolor fugiat\",\n \"containerName\": \"qui et\",\n \"status\": -19024191,\n \"rating\": {\n \"average\": -43871830,\n \"user\": -10436408\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"2004-10-23T21:38:23.396Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"elit fugiat eiusmod culpa\",\n \"firstName\": \"velit\",\n \"lastName\": \"do consectetur fugiat\"\n },\n \"modifiedAt\": \"1956-12-23T23:10:05.877Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"proident dolore ullamco\",\n \"firstName\": \"mollit Excepteur\",\n \"lastName\": \"amet\"\n },\n \"softDeletedAt\": \"1979-05-11T21:28:55.085Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"aliquip eiusmod Excepteur et non\",\n \"firstName\": \"fugiat in\",\n \"lastName\": \"ut reprehenderit\"\n },\n \"version\": {\n \"version\": -29381307,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": false,\n \"islatestversion\": false,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"cupidatat ea elit Duis\",\n \"cillum non\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"culpa \",\n \"assetCheckInComment\": \"nostr\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": true,\n \"userViewCounts\": {},\n \"createdAt\": \"1994-07-15T02:22:53.770Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"tempor est fugiat id\"\n },\n {\n \"name\": \"veniam sed deserunt incididunt\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": false,\n \"_links\": {\n \"self\": \"in officia\",\n \"functions\": [\n \"irure cupidatat anim ad commodo\",\n \"voluptate su\"\n ]\n }\n}"},{"id":"4a5ffa78-0d8b-4a10-ae17-ad5f16908a00","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Gets or sets the comment.","key":"comment","value":"esse ad eiusm"},{"description":"Gets or sets the status.","key":"status","value":"-74620316"},{"description":"The size of the original file this asset represents.","key":"fileSizeInBytes","value":"-78434360"},{"description":"The name of the file uploaded","key":"uploadFilename","value":"occaecat sint"},{"description":"FileName of the asset.","key":"fileName","value":"in sit Excepteur"},{"description":"The name of the file uploaded","key":"uploadUrl","value":"adipisicing tempor Ut"}]},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"77883ab3-b8f7-4e45-9cca-0d72024ece09"}],"id":"cb498145-b852-42ee-aa61-4b413b7e76d4","description":"

The group of requests is steps to create a new version of existing asset.

\n","_postman_id":"cb498145-b852-42ee-aa61-4b413b7e76d4","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"How to Search for Assets","item":[{"name":"Search by Custom Attributes","id":"9ffd289f-58af-43ef-941f-911e5c7c1d60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"search\": \"\",\r\n \"count\": 25,\r\n \"offset\": 0,\r\n \"sort\": \"record.createdAt D\",\r\n \"searchFields\": \"attributes\",\r\n \"includeSoftDeleted\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/assets/search","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets","search"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"38ec85c6-709c-485a-9e64-aac582ac50b5","name":"Request was successful.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": 96358351,\n \"assets\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"fugiat\",\n \"media\": {\n \"type\": \"adipisicing ullamco dolore\",\n \"small\": \"fugiat Ut\",\n \"thumb\": \"magna enim\",\n \"large\": \"aute consequat officia\",\n \"original\": \"tempor sunt voluptate \",\n \"medium\": \"proident non\",\n \"download\": \"mollit aliqua\",\n \"downloadRequest\": \"esse cillum sint exercitation\",\n \"stream\": \"nulla\",\n \"originalDimensions\": \"veniam in ad adipisicing ut\",\n \"sasExpiry\": -39174716,\n \"sasRenewal\": -55848396,\n \"renditionItemCount\": 92439973,\n \"autodeskUrn\": \"incididunt magna officia\",\n \"watermarked\": false\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"cupidatat elit sint officia\",\n \"fileName\": \"cillum\",\n \"md5\": \"magna quis nostrud\",\n \"fileType\": \"cillum magna\",\n \"sizeInBytes\": -73608668,\n \"description\": \"aliquip occaecat culpa\",\n \"keywords\": \"ex ipsum elit dolore\",\n \"uploadedAt\": \"1997-02-05T02:12:46.078Z\",\n \"modifiedAt\": \"1942-07-25T16:26:32.863Z\",\n \"approvedAt\": \"1984-08-30T02:57:20.860Z\",\n \"disapprovedAt\": \"1996-09-28T06:19:50.145Z\",\n \"expiresAt\": \"1959-03-05T14:09:25.325Z\",\n \"imageHeight\": 44967276,\n \"imageWidth\": 75160481,\n \"frameRate\": \"consequ\",\n \"length\": \"tempor ut ex voluptate in\",\n \"bitRate\": \"laboris esse ut fugiat\",\n \"mimeType\": \"fugiat sint sit ea\",\n \"resolution\": \"voluptate eu\",\n \"colorMode\": \"consequat fugiat nostrud in\",\n \"aspectRatio\": \"nisi cupidatat est culpa\",\n \"orientation\": \"ipsum aliquip reprehenderit Ut do\"\n },\n \"description\": \"consectetur pariatur ea sint exercitation\",\n \"containerName\": \"aute non exercitation deserunt pariatur\",\n \"status\": 17612141,\n \"rating\": {\n \"average\": 56790736,\n \"user\": 15111439\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"1941-09-30T17:30:12.882Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"consequat\",\n \"firstName\": \"elit ullamco veniam sit minim\",\n \"lastName\": \"sunt ut id ipsum\"\n },\n \"modifiedAt\": \"2000-02-18T17:08:13.252Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"Lorem consequat in aliquip\",\n \"firstName\": \"officia nisi enim ea ullamco\",\n \"lastName\": \"eu consequat\"\n },\n \"softDeletedAt\": \"1944-09-01T03:46:16.038Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"irure fugiat dolor\",\n \"firstName\": \"enim do in anim\",\n \"lastName\": \"sit officia\"\n },\n \"version\": {\n \"version\": -50990977,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": false,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"ullamco labore anim\",\n \"sunt\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"tempor consectetur ut\",\n \"assetCheckInComment\": \"in ullamco commodo ut\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": false,\n \"userViewCounts\": {},\n \"createdAt\": \"2000-08-18T03:44:15.984Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"reprehenderit fugiat velit sit aliquip\"\n },\n {\n \"name\": \"commodo sint\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": false,\n \"_links\": {\n \"self\": \"occaecat cillum\",\n \"functions\": [\n \"ipsum mollit id non quis\",\n \"eiusmod officia sed in consectetur\"\n ]\n }\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"nulla sed quis pariatur\",\n \"media\": {\n \"type\": \"consectetur officia velit elit ex\",\n \"small\": \"id est ullamco\",\n \"thumb\": \"labor\",\n \"large\": \"nulla occaecat eiusmod ex\",\n \"original\": \"adipisicing et Ut\",\n \"medium\": \"velit nisi\",\n \"download\": \"ipsum in dolore Ut irure\",\n \"downloadRequest\": \"eiusmod \",\n \"stream\": \"ullamco Duis\",\n \"originalDimensions\": \"aliquip sint\",\n \"sasExpiry\": 62527378,\n \"sasRenewal\": 66875239,\n \"renditionItemCount\": -18086985,\n \"autodeskUrn\": \"amet\",\n \"watermarked\": true\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"elit consectetur eiusmod\",\n \"fileName\": \"in ullamco ex ut\",\n \"md5\": \"labore anim nostrud ad id\",\n \"fileType\": \"enim dolor deserunt esse ea\",\n \"sizeInBytes\": 73744133,\n \"description\": \"amet\",\n \"keywords\": \"aliquip fugiat incididunt ut culpa\",\n \"uploadedAt\": \"1992-10-20T01:39:02.540Z\",\n \"modifiedAt\": \"2006-12-04T06:03:51.858Z\",\n \"approvedAt\": \"1949-08-07T15:20:37.460Z\",\n \"disapprovedAt\": \"1989-09-09T00:04:36.309Z\",\n \"expiresAt\": \"1971-07-12T10:46:48.653Z\",\n \"imageHeight\": 54225503,\n \"imageWidth\": 70061617,\n \"frameRate\": \"laboris mollit nulla f\",\n \"length\": \"Excepteur\",\n \"bitRate\": \"id\",\n \"mimeType\": \"adipisicing nostrud ad\",\n \"resolution\": \"ullamco dolore laborum quis\",\n \"colorMode\": \"tempor\",\n \"aspectRatio\": \"deserunt f\",\n \"orientation\": \"commodo\"\n },\n \"description\": \"voluptate consectetur nostrud sit\",\n \"containerName\": \"enim culpa\",\n \"status\": 63398945,\n \"rating\": {\n \"average\": -88527760,\n \"user\": 85144733\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"1974-01-10T16:52:50.321Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"reprehenderit sit dolore sint\",\n \"firstName\": \"voluptate consequat\",\n \"lastName\": \"eu labore\"\n },\n \"modifiedAt\": \"1952-10-14T20:22:29.660Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"non \",\n \"firstName\": \"consectetur in\",\n \"lastName\": \"anim dolor ut mollit\"\n },\n \"softDeletedAt\": \"2012-10-21T06:33:08.547Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"in exercitation velit irure ex\",\n \"firstName\": \"anim dolor\",\n \"lastName\": \"amet\"\n },\n \"version\": {\n \"version\": -83614724,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": true,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"ea nulla laborum\",\n \"proident quis cillum et\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"incididunt voluptate labor\",\n \"assetCheckInComment\": \"elit sint aliqua Ut\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": true,\n \"userViewCounts\": {},\n \"createdAt\": \"1988-12-28T13:06:49.035Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"et sed adipisicing\"\n },\n {\n \"name\": \"magna dolore est non\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": true,\n \"_links\": {\n \"self\": \"eu nostrud elit\",\n \"functions\": [\n \"ipsu\",\n \"reprehenderit labore sed id\"\n ]\n }\n }\n ],\n \"_links\": {\n \"self\": \"laborum eiusmod consectetur\",\n \"functions\": [\n \"do ut\",\n \"aliquip\"\n ]\n }\n}"},{"id":"4fc4a204-8a56-4992-9d2b-c7fca635dda9","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"93cbf6ae-6229-4662-b2f2-3e95b3f3f054","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9ffd289f-58af-43ef-941f-911e5c7c1d60"},{"name":"Search by Filename","id":"0585ed9a-d92c-4364-80fe-efc416b8afd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"search\": \"blue\",\r\n \"count\": 25,\r\n \"offset\": 0,\r\n \"sort\": \"record.createdAt D\",\r\n \"searchFields\": \"title,fileName\",\r\n \"includeSoftDeleted\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/assets/search","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets","search"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"012244ea-7e73-421b-9607-9cf9cd0dcc10","name":"Request was successful.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": 96358351,\n \"assets\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"fugiat\",\n \"media\": {\n \"type\": \"adipisicing ullamco dolore\",\n \"small\": \"fugiat Ut\",\n \"thumb\": \"magna enim\",\n \"large\": \"aute consequat officia\",\n \"original\": \"tempor sunt voluptate \",\n \"medium\": \"proident non\",\n \"download\": \"mollit aliqua\",\n \"downloadRequest\": \"esse cillum sint exercitation\",\n \"stream\": \"nulla\",\n \"originalDimensions\": \"veniam in ad adipisicing ut\",\n \"sasExpiry\": -39174716,\n \"sasRenewal\": -55848396,\n \"renditionItemCount\": 92439973,\n \"autodeskUrn\": \"incididunt magna officia\",\n \"watermarked\": false\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"cupidatat elit sint officia\",\n \"fileName\": \"cillum\",\n \"md5\": \"magna quis nostrud\",\n \"fileType\": \"cillum magna\",\n \"sizeInBytes\": -73608668,\n \"description\": \"aliquip occaecat culpa\",\n \"keywords\": \"ex ipsum elit dolore\",\n \"uploadedAt\": \"1997-02-05T02:12:46.078Z\",\n \"modifiedAt\": \"1942-07-25T16:26:32.863Z\",\n \"approvedAt\": \"1984-08-30T02:57:20.860Z\",\n \"disapprovedAt\": \"1996-09-28T06:19:50.145Z\",\n \"expiresAt\": \"1959-03-05T14:09:25.325Z\",\n \"imageHeight\": 44967276,\n \"imageWidth\": 75160481,\n \"frameRate\": \"consequ\",\n \"length\": \"tempor ut ex voluptate in\",\n \"bitRate\": \"laboris esse ut fugiat\",\n \"mimeType\": \"fugiat sint sit ea\",\n \"resolution\": \"voluptate eu\",\n \"colorMode\": \"consequat fugiat nostrud in\",\n \"aspectRatio\": \"nisi cupidatat est culpa\",\n \"orientation\": \"ipsum aliquip reprehenderit Ut do\"\n },\n \"description\": \"consectetur pariatur ea sint exercitation\",\n \"containerName\": \"aute non exercitation deserunt pariatur\",\n \"status\": 17612141,\n \"rating\": {\n \"average\": 56790736,\n \"user\": 15111439\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"1941-09-30T17:30:12.882Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"consequat\",\n \"firstName\": \"elit ullamco veniam sit minim\",\n \"lastName\": \"sunt ut id ipsum\"\n },\n \"modifiedAt\": \"2000-02-18T17:08:13.252Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"Lorem consequat in aliquip\",\n \"firstName\": \"officia nisi enim ea ullamco\",\n \"lastName\": \"eu consequat\"\n },\n \"softDeletedAt\": \"1944-09-01T03:46:16.038Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"irure fugiat dolor\",\n \"firstName\": \"enim do in anim\",\n \"lastName\": \"sit officia\"\n },\n \"version\": {\n \"version\": -50990977,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": false,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"ullamco labore anim\",\n \"sunt\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"tempor consectetur ut\",\n \"assetCheckInComment\": \"in ullamco commodo ut\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": false,\n \"userViewCounts\": {},\n \"createdAt\": \"2000-08-18T03:44:15.984Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"reprehenderit fugiat velit sit aliquip\"\n },\n {\n \"name\": \"commodo sint\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": false,\n \"_links\": {\n \"self\": \"occaecat cillum\",\n \"functions\": [\n \"ipsum mollit id non quis\",\n \"eiusmod officia sed in consectetur\"\n ]\n }\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"nulla sed quis pariatur\",\n \"media\": {\n \"type\": \"consectetur officia velit elit ex\",\n \"small\": \"id est ullamco\",\n \"thumb\": \"labor\",\n \"large\": \"nulla occaecat eiusmod ex\",\n \"original\": \"adipisicing et Ut\",\n \"medium\": \"velit nisi\",\n \"download\": \"ipsum in dolore Ut irure\",\n \"downloadRequest\": \"eiusmod \",\n \"stream\": \"ullamco Duis\",\n \"originalDimensions\": \"aliquip sint\",\n \"sasExpiry\": 62527378,\n \"sasRenewal\": 66875239,\n \"renditionItemCount\": -18086985,\n \"autodeskUrn\": \"amet\",\n \"watermarked\": true\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"elit consectetur eiusmod\",\n \"fileName\": \"in ullamco ex ut\",\n \"md5\": \"labore anim nostrud ad id\",\n \"fileType\": \"enim dolor deserunt esse ea\",\n \"sizeInBytes\": 73744133,\n \"description\": \"amet\",\n \"keywords\": \"aliquip fugiat incididunt ut culpa\",\n \"uploadedAt\": \"1992-10-20T01:39:02.540Z\",\n \"modifiedAt\": \"2006-12-04T06:03:51.858Z\",\n \"approvedAt\": \"1949-08-07T15:20:37.460Z\",\n \"disapprovedAt\": \"1989-09-09T00:04:36.309Z\",\n \"expiresAt\": \"1971-07-12T10:46:48.653Z\",\n \"imageHeight\": 54225503,\n \"imageWidth\": 70061617,\n \"frameRate\": \"laboris mollit nulla f\",\n \"length\": \"Excepteur\",\n \"bitRate\": \"id\",\n \"mimeType\": \"adipisicing nostrud ad\",\n \"resolution\": \"ullamco dolore laborum quis\",\n \"colorMode\": \"tempor\",\n \"aspectRatio\": \"deserunt f\",\n \"orientation\": \"commodo\"\n },\n \"description\": \"voluptate consectetur nostrud sit\",\n \"containerName\": \"enim culpa\",\n \"status\": 63398945,\n \"rating\": {\n \"average\": -88527760,\n \"user\": 85144733\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"1974-01-10T16:52:50.321Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"reprehenderit sit dolore sint\",\n \"firstName\": \"voluptate consequat\",\n \"lastName\": \"eu labore\"\n },\n \"modifiedAt\": \"1952-10-14T20:22:29.660Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"non \",\n \"firstName\": \"consectetur in\",\n \"lastName\": \"anim dolor ut mollit\"\n },\n \"softDeletedAt\": \"2012-10-21T06:33:08.547Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"in exercitation velit irure ex\",\n \"firstName\": \"anim dolor\",\n \"lastName\": \"amet\"\n },\n \"version\": {\n \"version\": -83614724,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": true,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"ea nulla laborum\",\n \"proident quis cillum et\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"incididunt voluptate labor\",\n \"assetCheckInComment\": \"elit sint aliqua Ut\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": true,\n \"userViewCounts\": {},\n \"createdAt\": \"1988-12-28T13:06:49.035Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"et sed adipisicing\"\n },\n {\n \"name\": \"magna dolore est non\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": true,\n \"_links\": {\n \"self\": \"eu nostrud elit\",\n \"functions\": [\n \"ipsu\",\n \"reprehenderit labore sed id\"\n ]\n }\n }\n ],\n \"_links\": {\n \"self\": \"laborum eiusmod consectetur\",\n \"functions\": [\n \"do ut\",\n \"aliquip\"\n ]\n }\n}"},{"id":"5fecf878-df7b-44b8-97d5-4f55b3833a9f","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"4991cc95-83a9-43be-82a2-c010c3e8df9b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0585ed9a-d92c-4364-80fe-efc416b8afd4"},{"name":"Filter by File type","id":"32bfa6b6-fa6d-4e5b-9110-25f2d40d43d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"search\": \"\",\r\n \"count\": 25,\r\n \"offset\": 0,\r\n \"sort\": \"record.createdAt D\",\r\n \"filters\": \"(AssetType EQ Image)\",\r\n \"includeSoftDeleted\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/assets/search","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets","search"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"a630042e-3a27-403b-8921-512b4bf38ba3","name":"Request was successful.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": 96358351,\n \"assets\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"fugiat\",\n \"media\": {\n \"type\": \"adipisicing ullamco dolore\",\n \"small\": \"fugiat Ut\",\n \"thumb\": \"magna enim\",\n \"large\": \"aute consequat officia\",\n \"original\": \"tempor sunt voluptate \",\n \"medium\": \"proident non\",\n \"download\": \"mollit aliqua\",\n \"downloadRequest\": \"esse cillum sint exercitation\",\n \"stream\": \"nulla\",\n \"originalDimensions\": \"veniam in ad adipisicing ut\",\n \"sasExpiry\": -39174716,\n \"sasRenewal\": -55848396,\n \"renditionItemCount\": 92439973,\n \"autodeskUrn\": \"incididunt magna officia\",\n \"watermarked\": false\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"cupidatat elit sint officia\",\n \"fileName\": \"cillum\",\n \"md5\": \"magna quis nostrud\",\n \"fileType\": \"cillum magna\",\n \"sizeInBytes\": -73608668,\n \"description\": \"aliquip occaecat culpa\",\n \"keywords\": \"ex ipsum elit dolore\",\n \"uploadedAt\": \"1997-02-05T02:12:46.078Z\",\n \"modifiedAt\": \"1942-07-25T16:26:32.863Z\",\n \"approvedAt\": \"1984-08-30T02:57:20.860Z\",\n \"disapprovedAt\": \"1996-09-28T06:19:50.145Z\",\n \"expiresAt\": \"1959-03-05T14:09:25.325Z\",\n \"imageHeight\": 44967276,\n \"imageWidth\": 75160481,\n \"frameRate\": \"consequ\",\n \"length\": \"tempor ut ex voluptate in\",\n \"bitRate\": \"laboris esse ut fugiat\",\n \"mimeType\": \"fugiat sint sit ea\",\n \"resolution\": \"voluptate eu\",\n \"colorMode\": \"consequat fugiat nostrud in\",\n \"aspectRatio\": \"nisi cupidatat est culpa\",\n \"orientation\": \"ipsum aliquip reprehenderit Ut do\"\n },\n \"description\": \"consectetur pariatur ea sint exercitation\",\n \"containerName\": \"aute non exercitation deserunt pariatur\",\n \"status\": 17612141,\n \"rating\": {\n \"average\": 56790736,\n \"user\": 15111439\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"1941-09-30T17:30:12.882Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"consequat\",\n \"firstName\": \"elit ullamco veniam sit minim\",\n \"lastName\": \"sunt ut id ipsum\"\n },\n \"modifiedAt\": \"2000-02-18T17:08:13.252Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"Lorem consequat in aliquip\",\n \"firstName\": \"officia nisi enim ea ullamco\",\n \"lastName\": \"eu consequat\"\n },\n \"softDeletedAt\": \"1944-09-01T03:46:16.038Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"irure fugiat dolor\",\n \"firstName\": \"enim do in anim\",\n \"lastName\": \"sit officia\"\n },\n \"version\": {\n \"version\": -50990977,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": false,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"ullamco labore anim\",\n \"sunt\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"tempor consectetur ut\",\n \"assetCheckInComment\": \"in ullamco commodo ut\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": false,\n \"userViewCounts\": {},\n \"createdAt\": \"2000-08-18T03:44:15.984Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"reprehenderit fugiat velit sit aliquip\"\n },\n {\n \"name\": \"commodo sint\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": false,\n \"_links\": {\n \"self\": \"occaecat cillum\",\n \"functions\": [\n \"ipsum mollit id non quis\",\n \"eiusmod officia sed in consectetur\"\n ]\n }\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"nulla sed quis pariatur\",\n \"media\": {\n \"type\": \"consectetur officia velit elit ex\",\n \"small\": \"id est ullamco\",\n \"thumb\": \"labor\",\n \"large\": \"nulla occaecat eiusmod ex\",\n \"original\": \"adipisicing et Ut\",\n \"medium\": \"velit nisi\",\n \"download\": \"ipsum in dolore Ut irure\",\n \"downloadRequest\": \"eiusmod \",\n \"stream\": \"ullamco Duis\",\n \"originalDimensions\": \"aliquip sint\",\n \"sasExpiry\": 62527378,\n \"sasRenewal\": 66875239,\n \"renditionItemCount\": -18086985,\n \"autodeskUrn\": \"amet\",\n \"watermarked\": true\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"elit consectetur eiusmod\",\n \"fileName\": \"in ullamco ex ut\",\n \"md5\": \"labore anim nostrud ad id\",\n \"fileType\": \"enim dolor deserunt esse ea\",\n \"sizeInBytes\": 73744133,\n \"description\": \"amet\",\n \"keywords\": \"aliquip fugiat incididunt ut culpa\",\n \"uploadedAt\": \"1992-10-20T01:39:02.540Z\",\n \"modifiedAt\": \"2006-12-04T06:03:51.858Z\",\n \"approvedAt\": \"1949-08-07T15:20:37.460Z\",\n \"disapprovedAt\": \"1989-09-09T00:04:36.309Z\",\n \"expiresAt\": \"1971-07-12T10:46:48.653Z\",\n \"imageHeight\": 54225503,\n \"imageWidth\": 70061617,\n \"frameRate\": \"laboris mollit nulla f\",\n \"length\": \"Excepteur\",\n \"bitRate\": \"id\",\n \"mimeType\": \"adipisicing nostrud ad\",\n \"resolution\": \"ullamco dolore laborum quis\",\n \"colorMode\": \"tempor\",\n \"aspectRatio\": \"deserunt f\",\n \"orientation\": \"commodo\"\n },\n \"description\": \"voluptate consectetur nostrud sit\",\n \"containerName\": \"enim culpa\",\n \"status\": 63398945,\n \"rating\": {\n \"average\": -88527760,\n \"user\": 85144733\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"1974-01-10T16:52:50.321Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"reprehenderit sit dolore sint\",\n \"firstName\": \"voluptate consequat\",\n \"lastName\": \"eu labore\"\n },\n \"modifiedAt\": \"1952-10-14T20:22:29.660Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"non \",\n \"firstName\": \"consectetur in\",\n \"lastName\": \"anim dolor ut mollit\"\n },\n \"softDeletedAt\": \"2012-10-21T06:33:08.547Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"in exercitation velit irure ex\",\n \"firstName\": \"anim dolor\",\n \"lastName\": \"amet\"\n },\n \"version\": {\n \"version\": -83614724,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": true,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"ea nulla laborum\",\n \"proident quis cillum et\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"incididunt voluptate labor\",\n \"assetCheckInComment\": \"elit sint aliqua Ut\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": true,\n \"userViewCounts\": {},\n \"createdAt\": \"1988-12-28T13:06:49.035Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"et sed adipisicing\"\n },\n {\n \"name\": \"magna dolore est non\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": true,\n \"_links\": {\n \"self\": \"eu nostrud elit\",\n \"functions\": [\n \"ipsu\",\n \"reprehenderit labore sed id\"\n ]\n }\n }\n ],\n \"_links\": {\n \"self\": \"laborum eiusmod consectetur\",\n \"functions\": [\n \"do ut\",\n \"aliquip\"\n ]\n }\n}"},{"id":"83cdc3f8-a9fc-49f0-931a-f0c90d6b5531","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"eba6467a-567e-47e0-9a12-7fee1e40f76b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"32bfa6b6-fa6d-4e5b-9110-25f2d40d43d6"},{"name":"Filter by Cognitive Metadata","id":"bf7bde64-d140-4680-8245-fde982a5bbd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"search\": \"\",\r\n \"count\": 25,\r\n \"offset\": 0,\r\n \"sort\": \"record.createdAt D\",\r\n \"searchFields\": \"cognitiveTextInImage,cognitiveContentInDocument,cognitiveTags,videoIntelligence\",\r\n \"includeSoftDeleted\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/assets/search","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets","search"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"4f304955-1a9f-4b6b-b00a-159a329ca198","name":"Request was successful.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": 96358351,\n \"assets\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"fugiat\",\n \"media\": {\n \"type\": \"adipisicing ullamco dolore\",\n \"small\": \"fugiat Ut\",\n \"thumb\": \"magna enim\",\n \"large\": \"aute consequat officia\",\n \"original\": \"tempor sunt voluptate \",\n \"medium\": \"proident non\",\n \"download\": \"mollit aliqua\",\n \"downloadRequest\": \"esse cillum sint exercitation\",\n \"stream\": \"nulla\",\n \"originalDimensions\": \"veniam in ad adipisicing ut\",\n \"sasExpiry\": -39174716,\n \"sasRenewal\": -55848396,\n \"renditionItemCount\": 92439973,\n \"autodeskUrn\": \"incididunt magna officia\",\n \"watermarked\": false\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"cupidatat elit sint officia\",\n \"fileName\": \"cillum\",\n \"md5\": \"magna quis nostrud\",\n \"fileType\": \"cillum magna\",\n \"sizeInBytes\": -73608668,\n \"description\": \"aliquip occaecat culpa\",\n \"keywords\": \"ex ipsum elit dolore\",\n \"uploadedAt\": \"1997-02-05T02:12:46.078Z\",\n \"modifiedAt\": \"1942-07-25T16:26:32.863Z\",\n \"approvedAt\": \"1984-08-30T02:57:20.860Z\",\n \"disapprovedAt\": \"1996-09-28T06:19:50.145Z\",\n \"expiresAt\": \"1959-03-05T14:09:25.325Z\",\n \"imageHeight\": 44967276,\n \"imageWidth\": 75160481,\n \"frameRate\": \"consequ\",\n \"length\": \"tempor ut ex voluptate in\",\n \"bitRate\": \"laboris esse ut fugiat\",\n \"mimeType\": \"fugiat sint sit ea\",\n \"resolution\": \"voluptate eu\",\n \"colorMode\": \"consequat fugiat nostrud in\",\n \"aspectRatio\": \"nisi cupidatat est culpa\",\n \"orientation\": \"ipsum aliquip reprehenderit Ut do\"\n },\n \"description\": \"consectetur pariatur ea sint exercitation\",\n \"containerName\": \"aute non exercitation deserunt pariatur\",\n \"status\": 17612141,\n \"rating\": {\n \"average\": 56790736,\n \"user\": 15111439\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"1941-09-30T17:30:12.882Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"consequat\",\n \"firstName\": \"elit ullamco veniam sit minim\",\n \"lastName\": \"sunt ut id ipsum\"\n },\n \"modifiedAt\": \"2000-02-18T17:08:13.252Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"Lorem consequat in aliquip\",\n \"firstName\": \"officia nisi enim ea ullamco\",\n \"lastName\": \"eu consequat\"\n },\n \"softDeletedAt\": \"1944-09-01T03:46:16.038Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"irure fugiat dolor\",\n \"firstName\": \"enim do in anim\",\n \"lastName\": \"sit officia\"\n },\n \"version\": {\n \"version\": -50990977,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": false,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"ullamco labore anim\",\n \"sunt\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"tempor consectetur ut\",\n \"assetCheckInComment\": \"in ullamco commodo ut\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": false,\n \"userViewCounts\": {},\n \"createdAt\": \"2000-08-18T03:44:15.984Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"reprehenderit fugiat velit sit aliquip\"\n },\n {\n \"name\": \"commodo sint\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": false,\n \"_links\": {\n \"self\": \"occaecat cillum\",\n \"functions\": [\n \"ipsum mollit id non quis\",\n \"eiusmod officia sed in consectetur\"\n ]\n }\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"nulla sed quis pariatur\",\n \"media\": {\n \"type\": \"consectetur officia velit elit ex\",\n \"small\": \"id est ullamco\",\n \"thumb\": \"labor\",\n \"large\": \"nulla occaecat eiusmod ex\",\n \"original\": \"adipisicing et Ut\",\n \"medium\": \"velit nisi\",\n \"download\": \"ipsum in dolore Ut irure\",\n \"downloadRequest\": \"eiusmod \",\n \"stream\": \"ullamco Duis\",\n \"originalDimensions\": \"aliquip sint\",\n \"sasExpiry\": 62527378,\n \"sasRenewal\": 66875239,\n \"renditionItemCount\": -18086985,\n \"autodeskUrn\": \"amet\",\n \"watermarked\": true\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"elit consectetur eiusmod\",\n \"fileName\": \"in ullamco ex ut\",\n \"md5\": \"labore anim nostrud ad id\",\n \"fileType\": \"enim dolor deserunt esse ea\",\n \"sizeInBytes\": 73744133,\n \"description\": \"amet\",\n \"keywords\": \"aliquip fugiat incididunt ut culpa\",\n \"uploadedAt\": \"1992-10-20T01:39:02.540Z\",\n \"modifiedAt\": \"2006-12-04T06:03:51.858Z\",\n \"approvedAt\": \"1949-08-07T15:20:37.460Z\",\n \"disapprovedAt\": \"1989-09-09T00:04:36.309Z\",\n \"expiresAt\": \"1971-07-12T10:46:48.653Z\",\n \"imageHeight\": 54225503,\n \"imageWidth\": 70061617,\n \"frameRate\": \"laboris mollit nulla f\",\n \"length\": \"Excepteur\",\n \"bitRate\": \"id\",\n \"mimeType\": \"adipisicing nostrud ad\",\n \"resolution\": \"ullamco dolore laborum quis\",\n \"colorMode\": \"tempor\",\n \"aspectRatio\": \"deserunt f\",\n \"orientation\": \"commodo\"\n },\n \"description\": \"voluptate consectetur nostrud sit\",\n \"containerName\": \"enim culpa\",\n \"status\": 63398945,\n \"rating\": {\n \"average\": -88527760,\n \"user\": 85144733\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"1974-01-10T16:52:50.321Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"reprehenderit sit dolore sint\",\n \"firstName\": \"voluptate consequat\",\n \"lastName\": \"eu labore\"\n },\n \"modifiedAt\": \"1952-10-14T20:22:29.660Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"non \",\n \"firstName\": \"consectetur in\",\n \"lastName\": \"anim dolor ut mollit\"\n },\n \"softDeletedAt\": \"2012-10-21T06:33:08.547Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"in exercitation velit irure ex\",\n \"firstName\": \"anim dolor\",\n \"lastName\": \"amet\"\n },\n \"version\": {\n \"version\": -83614724,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": true,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"ea nulla laborum\",\n \"proident quis cillum et\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"incididunt voluptate labor\",\n \"assetCheckInComment\": \"elit sint aliqua Ut\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": true,\n \"userViewCounts\": {},\n \"createdAt\": \"1988-12-28T13:06:49.035Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"et sed adipisicing\"\n },\n {\n \"name\": \"magna dolore est non\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": true,\n \"_links\": {\n \"self\": \"eu nostrud elit\",\n \"functions\": [\n \"ipsu\",\n \"reprehenderit labore sed id\"\n ]\n }\n }\n ],\n \"_links\": {\n \"self\": \"laborum eiusmod consectetur\",\n \"functions\": [\n \"do ut\",\n \"aliquip\"\n ]\n }\n}"},{"id":"a81ffde9-ae83-4cb9-8498-d3a5819e4606","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"cd60c32e-2b30-492a-bf2c-2d7463ded6df","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Whether soft deleted assets should be included in the result set.","key":"includeSoftDeleted","value":"true"},{"description":"The number of assets to return.","key":"count","value":"53052279"},{"description":"The number of offset to start returning assets from.","key":"offset","value":"-8109352"},{"description":"The search query.","key":"search","value":"dolor aliquip in"},{"description":"The sort order.","key":"sort","value":"aliqua ulla"},{"description":"The filters applied to the search.","key":"filters","value":"consequat proident consectetur laborum"},{"description":"The container filter applied to the search.","key":"containerfilter","value":"proident eiusmod aliquip exercitation dolor"},{"description":"The search fields to search in.","key":"searchFields","value":"amet pariatur laborum ullamco"},{"description":"Whether we'll include the total number of assets in the search result.","key":"includeTotalCount","value":"false"}]},"url":"https://api.mediavalet.com/assets/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bf7bde64-d140-4680-8245-fde982a5bbd0"}],"id":"9db87e04-4c34-4f14-9c53-ad40928f3c3e","description":"

Search assets.

\n","_postman_id":"9db87e04-4c34-4f14-9c53-ad40928f3c3e","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"How to Add Metadata to an Image","item":[{"name":"Add or Update Image Description Attribute","id":"8612789b-0c9a-4fd9-9ddf-032502134638","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/description\",\r\n \"value\": \"Updated description attribute\"\r\n }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"e2d2d2d3-7507-4955-aac6-c183cfc55bde","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"dbb5fd39-cd9a-4baf-918d-263ce6c393d2","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"op","value":"officia sed aliquip minim"},{"key":"path","value":"voluptate sit eu"},{"key":"value","value":"{}"},{"key":"from","value":"elit labore"},{"key":"op","value":"nostrud mollit tempor"},{"key":"path","value":"in culpa ut dolor in"},{"key":"value","value":"{}"},{"key":"from","value":"ipsum Excepteur"}]},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"et id nisi\",\n \"media\": {\n \"type\": \"in Lorem et\",\n \"small\": \"amet fugiat\",\n \"thumb\": \"voluptate mollit\",\n \"large\": \"veniam quis\",\n \"original\": \"fugiat laboris\",\n \"medium\": \"ad ipsum\",\n \"download\": \"sit cillum\",\n \"downloadRequest\": \"Ut consequat\",\n \"stream\": \"Lorem incididunt\",\n \"originalDimensions\": \"et commodo\",\n \"sasExpiry\": -52419261,\n \"sasRenewal\": -38816667,\n \"renditionItemCount\": -73959366,\n \"autodeskUrn\": \"tempor\",\n \"watermarked\": false\n },\n \"file\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"mollit lab\",\n \"fileName\": \"esse sed reprehenderit\",\n \"md5\": \"ex commodo aliqua quis\",\n \"fileType\": \"proident Lorem labore\",\n \"sizeInBytes\": 26575355,\n \"description\": \"quis\",\n \"keywords\": \"ipsum voluptate\",\n \"uploadedAt\": \"1978-01-05T04:44:22.931Z\",\n \"modifiedAt\": \"1967-12-17T22:33:23.496Z\",\n \"approvedAt\": \"2005-11-10T06:51:18.342Z\",\n \"disapprovedAt\": \"2009-04-23T13:29:52.554Z\",\n \"expiresAt\": \"1980-10-21T03:48:29.838Z\",\n \"imageHeight\": -72533612,\n \"imageWidth\": -38239887,\n \"frameRate\": \"officia consectetur\",\n \"length\": \"est sint\",\n \"bitRate\": \"reprehenderit\",\n \"mimeType\": \"commodo ipsum ex\",\n \"resolution\": \"culpa\",\n \"colorMode\": \"of\",\n \"aspectRatio\": \"cillum quis pariatur ullamc\",\n \"orientation\": \"commodo\"\n },\n \"description\": \"sunt in incididunt dolor fugiat\",\n \"containerName\": \"qui et\",\n \"status\": -19024191,\n \"rating\": {\n \"average\": -43871830,\n \"user\": -10436408\n },\n \"attributes\": {},\n \"record\": {\n \"createdAt\": \"2004-10-23T21:38:23.396Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"elit fugiat eiusmod culpa\",\n \"firstName\": \"velit\",\n \"lastName\": \"do consectetur fugiat\"\n },\n \"modifiedAt\": \"1956-12-23T23:10:05.877Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"proident dolore ullamco\",\n \"firstName\": \"mollit Excepteur\",\n \"lastName\": \"amet\"\n },\n \"softDeletedAt\": \"1979-05-11T21:28:55.085Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"aliquip eiusmod Excepteur et non\",\n \"firstName\": \"fugiat in\",\n \"lastName\": \"ut reprehenderit\"\n },\n \"version\": {\n \"version\": -29381307,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": false,\n \"islatestversion\": false,\n \"ismajorversion\": true\n }\n },\n \"categories\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"keywords\": [\n \"cupidatat ea elit Duis\",\n \"cillum non\"\n ],\n \"relatedassets\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"assetCheckOutComment\": \"culpa \",\n \"assetCheckInComment\": \"nostr\",\n \"checkedOutBy\": \"00000000-0000-0000-0000-000000000000\",\n \"renderAsPdf\": true,\n \"wopiEnabled\": true,\n \"userViewCounts\": {},\n \"createdAt\": \"1994-07-15T02:22:53.770Z\",\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"tempor est fugiat id\"\n },\n {\n \"name\": \"veniam sed deserunt incididunt\"\n }\n ]\n },\n \"hasVideoIntelligenceContent\": false,\n \"_links\": {\n \"self\": \"in officia\",\n \"functions\": [\n \"irure cupidatat anim ad commodo\",\n \"voluptate su\"\n ]\n }\n}"},{"id":"0bab07ce-e348-4743-bd53-1767bf314939","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"op","value":"officia sed aliquip minim"},{"key":"path","value":"voluptate sit eu"},{"key":"value","value":"{}"},{"key":"from","value":"elit labore"},{"key":"op","value":"nostrud mollit tempor"},{"key":"path","value":"in culpa ut dolor in"},{"key":"value","value":"{}"},{"key":"from","value":"ipsum Excepteur"}]},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f2a559cc-12d4-442e-bee2-00e511629d11","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"op","value":"officia sed aliquip minim"},{"key":"path","value":"voluptate sit eu"},{"key":"value","value":"{}"},{"key":"from","value":"elit labore"},{"key":"op","value":"nostrud mollit tempor"},{"key":"path","value":"in culpa ut dolor in"},{"key":"value","value":"{}"},{"key":"from","value":"ipsum Excepteur"}]},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8612789b-0c9a-4fd9-9ddf-032502134638"},{"name":"Add Keyword to an Image","id":"ebfa7554-1fbe-43d8-a478-51d6288d477b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"[\"new-keyword\"]","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/keywords","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","keywords"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"4926af40-f700-4d6b-812e-eb5ad14b44c1","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"8460dea2-3f4d-46cc-aa9c-4a06ffa063ac","name":"Request was accepted.","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"00000000-0000-0000-0000-000000000000\",\n \"keywords\": [\n \"ea est esse\",\n \"est nisi\"\n ],\n \"_links\": {\n \"self\": \"velit sint aute\",\n \"functions\": [\n \"dolo\",\n \"elit eiusmod tempor exercitation cupidatat\"\n ]\n }\n}"},{"id":"8152118a-d11f-4f78-b156-ac3fbeeec0cd","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ebfa7554-1fbe-43d8-a478-51d6288d477b"}],"id":"e46ccb00-42b9-4fb6-ac08-117c1c658f6a","_postman_id":"e46ccb00-42b9-4fb6-ac08-117c1c658f6a","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"How to Create a Restricted Category","item":[{"name":"01. Create Category","id":"29438e6b-481a-490c-93ef-6f32c545a8e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"treeName\": \"\",\r\n \"parentId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/categories","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"5a2318ba-22f8-42b0-85a3-6fd3afda252e","name":"The category was successfully created.","originalRequest":{"method":"POST","header":[],"url":"https://api.mediavalet.com/categories"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"name\": \"pariatur\",\n \"assetCount\": -92169462,\n \"subfolderCount\": -53286449,\n \"subfolders\": [\n {\n \"name\": \"magna fugiat Ut sint\",\n \"assetCount\": -63044151,\n \"subfolderCount\": 22456680,\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": 20662592\n },\n \"tree\": {\n \"path\": \"eiusmod dolor ut commodo\",\n \"name\": \"anim reprehenderit proident laborum\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"parentId\": \"00000000-0000-0000-0000-000000000000\",\n \"record\": {\n \"createdAt\": \"1985-01-19T09:17:30.916Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"nostrud Ut\",\n \"firstName\": \"aliquip est\",\n \"lastName\": \"ut ad elit aliq\"\n },\n \"modifiedAt\": \"1942-09-12T12:43:40.181Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"Ut exerci\",\n \"firstName\": \"sunt laboris et non\",\n \"lastName\": \"commodo aute ipsum laboris\"\n },\n \"softDeletedAt\": \"1996-01-16T12:57:24.288Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"mollit commodo non dolor\",\n \"firstName\": \"irure ad\",\n \"lastName\": \"in in\"\n },\n \"version\": {\n \"version\": -3361165,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": false,\n \"islatestversion\": true,\n \"ismajorversion\": false\n }\n },\n \"_links\": {\n \"self\": \"adipisicing aute ex ipsum\",\n \"functions\": [\n \"mollit ipsum id exercitation sit\",\n \"in cupidatat\"\n ]\n }\n },\n {\n \"name\": \"dolore\",\n \"assetCount\": -12162732,\n \"subfolderCount\": 92972485,\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": 93227157\n },\n \"tree\": {\n \"path\": \"amet Excepteur occaecat\",\n \"name\": \"Excepteur veniam laborum\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"parentId\": \"00000000-0000-0000-0000-000000000000\",\n \"record\": {\n \"createdAt\": \"1973-12-08T07:34:51.697Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"laboris\",\n \"firstName\": \"sed sunt pariatur eiusmod aliquip\",\n \"lastName\": \"ut reprehenderit proident est\"\n },\n \"modifiedAt\": \"1973-01-14T18:42:29.055Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"minim ea\",\n \"firstName\": \"sint voluptate ea esse\",\n \"lastName\": \"qui\"\n },\n \"softDeletedAt\": \"1987-04-18T10:14:26.559Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"in esse\",\n \"firstName\": \"ipsum cillum do\",\n \"lastName\": \"eu dolore et\"\n },\n \"version\": {\n \"version\": 87058873,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": true,\n \"ismajorversion\": false\n }\n },\n \"_links\": {\n \"self\": \"aute sed elit Excepteur\",\n \"functions\": [\n \"non eiusmod dolor ut magna\",\n \"id aliquip esse\"\n ]\n }\n }\n ],\n \"subcats\": {\n \"total\": -21408968\n },\n \"tree\": {\n \"path\": \"in nostrud\",\n \"name\": \"enim laboris Excepteur\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"parentId\": \"00000000-0000-0000-0000-000000000000\",\n \"record\": {\n \"createdAt\": \"1994-10-05T05:31:26.665Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"labore amet non\",\n \"firstName\": \"sit dolor deserunt fugiat\",\n \"lastName\": \"commodo in\"\n },\n \"modifiedAt\": \"1958-07-24T12:25:44.911Z\",\n \"modifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"enim officia et eu\",\n \"firstName\": \"ut eu\",\n \"lastName\": \"sit minim labore sunt\"\n },\n \"softDeletedAt\": \"1990-02-15T08:48:30.310Z\",\n \"softDeletedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"laboris Excepteur\",\n \"firstName\": \"velit minim ex sunt\",\n \"lastName\": \"velit fugiat irure dolore\"\n },\n \"version\": {\n \"version\": 34695786,\n \"current\": \"00000000-0000-0000-0000-000000000000\",\n \"head\": \"00000000-0000-0000-0000-000000000000\",\n \"parentid\": \"00000000-0000-0000-0000-000000000000\",\n \"isversionable\": true,\n \"islatestversion\": true,\n \"ismajorversion\": true\n }\n },\n \"_links\": {\n \"self\": \"incididunt laboris do\",\n \"functions\": [\n \"et in officia\",\n \"ad l\"\n ]\n }\n}"},{"id":"75cf5975-ccc8-4003-a9bf-8d4ad66583e9","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[],"url":"https://api.mediavalet.com/categories"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d4df140d-c884-4eea-b61f-8de6a0865633","name":"The current user is not authorized to execute this operation.","originalRequest":{"method":"POST","header":[],"url":"https://api.mediavalet.com/categories"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e404a572-27a7-4ce2-92b6-4ff4cb10e992","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"url":"https://api.mediavalet.com/categories"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"29438e6b-481a-490c-93ef-6f32c545a8e8"},{"name":"02. Create User Group","id":"8319198e-0f21-4ea8-8050-d2b5259475a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"roleName\": \"\",\r\n \"permissions\": [\r\n \"List\",\r\n \"View\"\r\n ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/groups","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["groups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"3f99c37b-82d7-4d06-97e7-bdaa7e652f8a","name":"Request was accepted.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Name of the group.","key":"roleName","value":"laboris cillum aliquip"},{"description":"Description of the group.","key":"roleDescription","value":"aliqua voluptate esse"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"ipsum occaecat ullamco"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"cupidatat ut in"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"id do cillum magna"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"ullamco eiusmod ali"},{"description":"Gets or sets the role Id.","key":"id","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit identifier.","key":"orgUnitId","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit Name.","key":"orgUnitName","value":"quis consequat culpa"},{"description":"Gets the name of the library.","key":"libraryName","value":"non nostrud"},{"description":"Gets the name of the library.","key":"libraryName","value":"anim ullamco"},{"key":"self","value":"in enim"},{"key":"functions","value":"[\"id\",\"fugiat ea adipisicing\"]"}]},"url":"https://api.mediavalet.com/groups"},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"0958e933-00bd-45c9-b05b-a3b8618b4335","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Name of the group.","key":"roleName","value":"laboris cillum aliquip"},{"description":"Description of the group.","key":"roleDescription","value":"aliqua voluptate esse"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"ipsum occaecat ullamco"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"cupidatat ut in"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"id do cillum magna"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"ullamco eiusmod ali"},{"description":"Gets or sets the role Id.","key":"id","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit identifier.","key":"orgUnitId","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit Name.","key":"orgUnitName","value":"quis consequat culpa"},{"description":"Gets the name of the library.","key":"libraryName","value":"non nostrud"},{"description":"Gets the name of the library.","key":"libraryName","value":"anim ullamco"},{"key":"self","value":"in enim"},{"key":"functions","value":"[\"id\",\"fugiat ea adipisicing\"]"}]},"url":"https://api.mediavalet.com/groups"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"129b2d9d-eec5-4a23-91ef-35d9e8fe208f","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Name of the group.","key":"roleName","value":"laboris cillum aliquip"},{"description":"Description of the group.","key":"roleDescription","value":"aliqua voluptate esse"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"ipsum occaecat ullamco"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"cupidatat ut in"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"id do cillum magna"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"ullamco eiusmod ali"},{"description":"Gets or sets the role Id.","key":"id","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit identifier.","key":"orgUnitId","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit Name.","key":"orgUnitName","value":"quis consequat culpa"},{"description":"Gets the name of the library.","key":"libraryName","value":"non nostrud"},{"description":"Gets the name of the library.","key":"libraryName","value":"anim ullamco"},{"key":"self","value":"in enim"},{"key":"functions","value":"[\"id\",\"fugiat ea adipisicing\"]"}]},"url":"https://api.mediavalet.com/groups"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"49525050-7274-4fa3-a16c-792935474106","name":"A group with the same name already exists.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Name of the group.","key":"roleName","value":"laboris cillum aliquip"},{"description":"Description of the group.","key":"roleDescription","value":"aliqua voluptate esse"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"ipsum occaecat ullamco"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"cupidatat ut in"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"id do cillum magna"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"ullamco eiusmod ali"},{"description":"Gets or sets the role Id.","key":"id","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit identifier.","key":"orgUnitId","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit Name.","key":"orgUnitName","value":"quis consequat culpa"},{"description":"Gets the name of the library.","key":"libraryName","value":"non nostrud"},{"description":"Gets the name of the library.","key":"libraryName","value":"anim ullamco"},{"key":"self","value":"in enim"},{"key":"functions","value":"[\"id\",\"fugiat ea adipisicing\"]"}]},"url":"https://api.mediavalet.com/groups"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2f0ceb2d-496e-4442-9d8f-67584919d20d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"Name of the group.","key":"roleName","value":"laboris cillum aliquip"},{"description":"Description of the group.","key":"roleDescription","value":"aliqua voluptate esse"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"ipsum occaecat ullamco"},{"description":"Gets or sets the inhreited from.","key":"inheritedFrom","value":"cupidatat ut in"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"id do cillum magna"},{"description":"Gets or sets the list of permissions.","key":"permissions","value":"ullamco eiusmod ali"},{"description":"Gets or sets the role Id.","key":"id","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the repository identifier.","key":"repositories","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit identifier.","key":"orgUnitId","value":"00000000-0000-0000-0000-000000000000"},{"description":"Gets or sets the org unit Name.","key":"orgUnitName","value":"quis consequat culpa"},{"description":"Gets the name of the library.","key":"libraryName","value":"non nostrud"},{"description":"Gets the name of the library.","key":"libraryName","value":"anim ullamco"},{"key":"self","value":"in enim"},{"key":"functions","value":"[\"id\",\"fugiat ea adipisicing\"]"}]},"url":"https://api.mediavalet.com/groups"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8319198e-0f21-4ea8-8050-d2b5259475a6"},{"name":"03. Grant Group Access to the Category","id":"15d83915-d974-4fa7-9942-c224de0d7872","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/categoryIds\",\r\n \"value\": \"\"\r\n }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/groups/:userGroupId/categories","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["groups",":userGroupId","categories"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"d493859a-a25d-4ddb-a244-1dde45296fc3","description":{"content":"

User group id

\n","type":"text/plain"},"type":"any","value":"","key":"userGroupId"}]}},"response":[{"id":"7ea8f6df-68c4-4007-b33f-2d346f653884","name":"Request was accepted.","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"categories\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"cupidatat Duis\",\n \"parentId\": \"00000000-0000-0000-0000-000000000000\",\n \"tree\": {\n \"path\": \"dolore ea laboris\",\n \"name\": \"do velit Excepteur\"\n },\n \"subfolderCount\": 31920892,\n \"hasDirectAccess\": false,\n \"permission\": \"proident ea dolor sed\",\n \"inherited\": false\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"nulla sunt in\",\n \"parentId\": \"00000000-0000-0000-0000-000000000000\",\n \"tree\": {\n \"path\": \"in laborum ipsum\",\n \"name\": \"dolor reprehenderit exercitation quis\"\n },\n \"subfolderCount\": -33449181,\n \"hasDirectAccess\": false,\n \"permission\": \"ipsum Lorem aliquip\",\n \"inherited\": true\n }\n ],\n \"watermarkedCategories\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"et minim tempor qui\",\n \"parentId\": \"00000000-0000-0000-0000-000000000000\",\n \"tree\": {\n \"path\": \"cillum incididunt sint velit\",\n \"name\": \"quis ad eiusmod\"\n },\n \"subfolderCount\": -74278471,\n \"hasDirectAccess\": false,\n \"permission\": \"id minim laboris\",\n \"inherited\": false\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"adipisicing aute\",\n \"parentId\": \"00000000-0000-0000-0000-000000000000\",\n \"tree\": {\n \"path\": \"ad magna occaecat\",\n \"name\": \"aute\"\n },\n \"subfolderCount\": -77600547,\n \"hasDirectAccess\": true,\n \"permission\": \"consequat aliquip eu in\",\n \"inherited\": true\n }\n ],\n \"permissionRestrictedCategories\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"officia et\",\n \"parentId\": \"00000000-0000-0000-0000-000000000000\",\n \"tree\": {\n \"path\": \"cillum dolore pariatur eiusmod officia\",\n \"name\": \"cupidatat\"\n },\n \"subfolderCount\": 79196467,\n \"hasDirectAccess\": true,\n \"permission\": \"pariatur veniam\",\n \"inherited\": true\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"eiusmod culpa laboris\",\n \"parentId\": \"00000000-0000-0000-0000-000000000000\",\n \"tree\": {\n \"path\": \"laborum\",\n \"name\": \"id reprehenderit dolor\"\n },\n \"subfolderCount\": 5164457,\n \"hasDirectAccess\": false,\n \"permission\": \"aute in id qui\",\n \"inherited\": false\n }\n ],\n \"_links\": {\n \"self\": \"in dolore eiusmod Ut\",\n \"functions\": [\n \"est Lorem\",\n \"ut cupidatat id et\"\n ]\n }\n}"},{"id":"6bd857ae-5277-47b2-8640-7fbf9df1235e","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c89d3ac6-c3f3-4627-ab2d-e4596400a520","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2ac7008e-15ec-4792-8b0b-c3a99d247aaa","name":"An user group was not found.","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"7102af24-ba75-4918-9d54-7b1fcf11fea3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"15d83915-d974-4fa7-9942-c224de0d7872"}],"id":"47bf6027-33f4-4c67-b6a3-b984048576b7","_postman_id":"47bf6027-33f4-4c67-b6a3-b984048576b7","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"How to Generate CDN Links","item":[{"name":"Create A Direct Link","id":"ffcf5085-c570-4bd1-89fd-061023fec732","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"RenditionSettings\": {\r\n \"Size\": {\r\n \"Type\": \"Custom\",\r\n \"Width\": 100,\r\n \"Height\": 100\r\n },\r\n \"Format\": \"MP4\"\r\n },\r\n \"LinkSettings\": {\r\n \"IsDevModeEnabled\": false,\r\n \"LinkName\": \"If IsUniqueLink is set to true, this needs to be an unique name\",\r\n \"IsEmbedCode\": true,\r\n \"IsUniqueLink\": true\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/directlinks/:assetId","description":"

Generates a direct link for an original or renditions.

\n

Following requests are describing how to generate direct link for each asset type.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"7ae5ea05-efe5-4264-9526-30bd8731c649","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"assetId"}]}},"response":[{"id":"ce4d3a5f-d07c-4bf6-8ad9-aeeab8e43147","name":"The direct link was successfully created.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"directLinkId\": \"00000000-0000-0000-0000-000000000000\",\n \"cdnLink\": \"officia adipisicing\",\n \"_links\": {\n \"self\": \"est\",\n \"functions\": [\n \"Ut enim Lorem aute nulla\",\n \"ea voluptate dolor nulla in\"\n ]\n }\n}"},{"id":"7c99d9c3-eec1-4674-8a60-7f8c19ca3dbf","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"0c86d9c9-6f4a-469b-99fd-71b0d440f175","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2b85eab8-07fe-4c9c-9ef9-29b350744759","name":"The asset was not found. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"737641bb-d592-4f46-8eeb-a734825c9c9a","name":"Conflict has occurred. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"8154ba04-4b8a-4403-a2da-48246ef87651","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ffcf5085-c570-4bd1-89fd-061023fec732"},{"name":"Create A Direct Link for Image Asset","id":"9d54a1ca-3940-4aef-a6d2-296d1899aba7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"RenditionSettings\": {\r\n \"Size\": {\r\n \"Type\": \"Custom\",\r\n \"Width\": 100,\r\n \"Height\": 100\r\n },\r\n \"Format\": \"PNG\"\r\n },\r\n \"LinkSettings\": {\r\n \"IsDevModeEnabled\": false,\r\n \"LinkName\": \"If IsUniqueLink is set to true, this needs to be an unique name\",\r\n \"IsEmbedCode\": true,\r\n \"IsUniqueLink\": true\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/directlinks/:assetId","description":"

Generates a direct link for an orginal or renditions for image asset type.

\n

Size Type property can be: XLarge, Widescreen, Fullscreen, Large, Medium, Small, Thumbnail, Original, Custom.

\n

Only for Custom Size Type property, Width and Height needs to be included.

\n

Value for format property can be: GIF, JPG, PDF, PNG, TIFF.

\n

Note that if you send asset’s original format and if that format is not in the list of format values provided above, you can only request Original size type and this will generate direct link pointing to the original asset’s file.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"7ae5ea05-efe5-4264-9526-30bd8731c649","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"assetId"}]}},"response":[{"id":"cd053d8d-9b85-4e62-9722-15d1ffac0ff3","name":"The direct link was successfully created.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"directLinkId\": \"00000000-0000-0000-0000-000000000000\",\n \"cdnLink\": \"officia adipisicing\",\n \"_links\": {\n \"self\": \"est\",\n \"functions\": [\n \"Ut enim Lorem aute nulla\",\n \"ea voluptate dolor nulla in\"\n ]\n }\n}"},{"id":"e9a7319b-ea13-45f3-b73a-899f1c281c1c","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e3cb2d23-6efc-4bf9-81fa-4bb1cb589bdd","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"b36cf81f-8906-4c5c-8b75-96ca037b2c5e","name":"The asset was not found. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e3e5be69-6355-4871-8c55-672528d38e66","name":"Conflict has occurred. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"df0b4c8d-3a5a-46b0-a598-da74a51846ce","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9d54a1ca-3940-4aef-a6d2-296d1899aba7"},{"name":"Create A Direct Link for Video Asset","id":"63f9879c-de5d-4850-bf00-98623a239d3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"RenditionSettings\": {\r\n \"Size\": {\r\n \"Type\": \"Large\"\r\n },\r\n \"Format\": \"MPEG\"\r\n },\r\n \"LinkSettings\": {\r\n \"IsDevModeEnabled\": false,\r\n \"LinkName\": \"If IsUniqueLink is set to true, this needs to be an unique name\",\r\n \"IsEmbedCode\": true,\r\n \"IsUniqueLink\": true\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/directlinks/:assetId","description":"

Generates a direct link for an original or renditions for video asset type.

\n

Size Type property can be: Widescreen360p, Widescreen480p, Widescreen720p, Widescreen1080p, Original, Custom.

\n

Only for Custom Size Type property, Width and Height needs to be included.

\n

Value for format property can be: AVI, FLV, MKV, MOV, MPEG, MP4, WMV.

\n

Note that if you send asset’s original format and if that format is not in the list of format values provided above, you can only request Original size type and this will generate direct link pointing to the original asset’s file.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"7ae5ea05-efe5-4264-9526-30bd8731c649","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"assetId"}]}},"response":[{"id":"016ee595-f324-4176-a38d-307a954467d9","name":"The direct link was successfully created.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"directLinkId\": \"00000000-0000-0000-0000-000000000000\",\n \"cdnLink\": \"officia adipisicing\",\n \"_links\": {\n \"self\": \"est\",\n \"functions\": [\n \"Ut enim Lorem aute nulla\",\n \"ea voluptate dolor nulla in\"\n ]\n }\n}"},{"id":"6899d602-a3ad-4165-b72c-5ce5f05ac4b8","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"6ee5b0dd-2924-4e45-85ba-8324536e28a9","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"bfbcc338-4fe7-44ff-906d-3780bb1e3c7f","name":"The asset was not found. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"1cf7bb7e-8394-4649-96dc-1c9b3a3ef0c4","name":"Conflict has occurred. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e7e97f06-35da-4ae7-a1b6-790e26f21c00","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"63f9879c-de5d-4850-bf00-98623a239d3b"},{"name":"Create A Direct Link for Audio Asset","id":"f996db26-1b12-4a89-b2f1-770288105507","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"RenditionSettings\": {\r\n \"Size\": {\r\n },\r\n \"Format\": \"MP3\"\r\n },\r\n \"LinkSettings\": {\r\n \"IsDevModeEnabled\": false,\r\n \"LinkName\": \"If IsUniqueLink is set to true, this needs to be an unique name\",\r\n \"IsEmbedCode\": true,\r\n \"IsUniqueLink\": true\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/directlinks/:assetId","description":"

Generates a direct link for an original or renditions for audio asset type.

\n

Size Type property is not available for Audio assets.

\n

Value for format property can be: MP3, MP4, MWA.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"7ae5ea05-efe5-4264-9526-30bd8731c649","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"assetId"}]}},"response":[{"id":"08a334bd-2f57-4768-a029-a2bdb5714a90","name":"The direct link was successfully created.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"directLinkId\": \"00000000-0000-0000-0000-000000000000\",\n \"cdnLink\": \"officia adipisicing\",\n \"_links\": {\n \"self\": \"est\",\n \"functions\": [\n \"Ut enim Lorem aute nulla\",\n \"ea voluptate dolor nulla in\"\n ]\n }\n}"},{"id":"c6960c1f-079a-4075-99ce-c5ca1fb13009","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"8858f7fe-d21c-4581-9c8b-5fe8d1ed94c2","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"6ad0a650-5475-431e-a560-68bf170937f0","name":"The asset was not found. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"96946b8a-7837-48aa-9ae7-5538399c7777","name":"Conflict has occurred. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c3d1a8c1-cd97-4633-b8df-465c169687b1","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f996db26-1b12-4a89-b2f1-770288105507"},{"name":"Create A Direct Link for Document Asset","id":"f5a4a82e-c6c0-47c2-aaee-c6c5f748302c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"RenditionSettings\": {\r\n \"Size\": {\r\n },\r\n \"Format\": \"PDF\"\r\n },\r\n \"LinkSettings\": {\r\n \"IsDevModeEnabled\": false,\r\n \"LinkName\": \"If IsUniqueLink is set to true, this needs to be an unique name\",\r\n \"IsEmbedCode\": true,\r\n \"IsUniqueLink\": true\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/directlinks/:assetId","description":"

Generates a direct link for an original or renditions for document asset type.

\n

Size Type property is not available for Document assets.

\n

Value for format property can be: PDF.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"7ae5ea05-efe5-4264-9526-30bd8731c649","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"assetId"}]}},"response":[{"id":"8aaa808f-9387-48e4-98be-53b97ca07664","name":"The direct link was successfully created.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"directLinkId\": \"00000000-0000-0000-0000-000000000000\",\n \"cdnLink\": \"officia adipisicing\",\n \"_links\": {\n \"self\": \"est\",\n \"functions\": [\n \"Ut enim Lorem aute nulla\",\n \"ea voluptate dolor nulla in\"\n ]\n }\n}"},{"id":"67d5ef3b-b793-4309-85fd-e713f8e48161","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"19043ae3-f953-40b6-b477-b6007e38ec8e","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"6d88d45d-06e3-4f35-8013-a9f3ce5359e8","name":"The asset was not found. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"807fbcde-47bd-4028-b9af-a25648df8066","name":"Conflict has occurred. ","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"dc300b04-7d9d-4c52-a246-6b9320192b72","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Size","value":"{\"Type\":\"Widescreen360p\",\"Width\":-49211327,\"Height\":36226174}"},{"key":"Format","value":"consectetur culpa reprehenderit sit"},{"key":"IsDevModeEnabled","value":"true"},{"key":"LinkName","value":"eiusmod nostrud ut Duis nisi"},{"key":"IsEmbedCode","value":"false"},{"key":"IsUniqueLink","value":"false"}]},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f5a4a82e-c6c0-47c2-aaee-c6c5f748302c"},{"name":"Retrieve Direct Links","id":"5b70b1eb-2dca-4171-814a-c933ad3a6232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"url":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=true","description":"

Returns a collection of direct links.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks",":assetId"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"true"}],"variable":[{"id":"8fb226d1-e672-4d70-804a-d4f11c5c66c1","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"assetId"}]}},"response":[{"id":"bc68cc38-43fa-4881-a1c6-6fed8b800d75","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=true","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"query":[{"key":"includeSoftDeleted","value":"true"}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"assetId\": \"00000000-0000-0000-0000-000000000000\",\n \"directLinkId\": \"00000000-0000-0000-0000-000000000000\",\n \"cdnLink\": \"reprehenderit tempor dolore nostrud\",\n \"linkName\": \"in culpa quis officia\",\n \"createdAt\": \"2011-08-03T06:15:43.194Z\",\n \"user\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"minim nisi\",\n \"firstName\": \"Lorem adipisicing dolore deserunt\",\n \"lastName\": \"ipsum Ut amet laboris\"\n },\n \"selectedOptions\": \"labore \",\n \"state\": \"Broken\",\n \"modifiedDateTime\": \"2016-11-26T23:19:22.007Z\"\n },\n {\n \"assetId\": \"00000000-0000-0000-0000-000000000000\",\n \"directLinkId\": \"00000000-0000-0000-0000-000000000000\",\n \"cdnLink\": \"elit Lo\",\n \"linkName\": \"minim dolore\",\n \"createdAt\": \"1980-02-20T00:09:12.402Z\",\n \"user\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"reprehenderit anim Ut consectetur officia\",\n \"firstName\": \"magna laborum\",\n \"lastName\": \"aliqua occaecat\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Deactivated\",\n \"modifiedDateTime\": \"1957-05-12T17:49:03.911Z\"\n }\n]"},{"id":"dfa292f0-8301-4a6d-aa55-013e50208d33","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=true","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"query":[{"key":"includeSoftDeleted","value":"true"}],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"55699d7d-8ff0-4237-bb94-b5da1371857e","name":"The asset was not found.","originalRequest":{"method":"GET","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=true","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"query":[{"key":"includeSoftDeleted","value":"true"}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d619c993-4e0b-4f2f-b154-e81afe9640d6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=true","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"query":[{"key":"includeSoftDeleted","value":"true"}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5b70b1eb-2dca-4171-814a-c933ad3a6232"}],"id":"edefee98-f272-40c5-bc64-00e069d92034","description":"

List all API calls for creating direct links for Image, Video, Audio and Document asset types. \nOnce direct links are generated, all links for a single asset can be retrieved through API call.

\n","_postman_id":"edefee98-f272-40c5-bc64-00e069d92034","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"How to manage Branded Portal assets","item":[{"name":"Create Branded Portal","item":[{"name":"Create Branded Portal","id":"54e62cb6-e4e1-4d63-8ab0-c36a69546431","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"urn:uuid:00000000-0000-0000-0000-000000000000","description":"

(Required) Branded portal id

\n"},{"key":"name","value":"Branded Portal yyyy/MM/dd - hh:mm:ss PM","description":"

(Required) Branded portal name

\n"},{"key":"host","value":"test.mediavalet.com","description":"

(Required) Branded portal host

\n"},{"key":"path","value":"branded-portal_yyyy-MM-dd_hh-mm-ssPM","description":"

(Required) Branded portal path

\n"},{"key":"pageLayout","value":"\"{\\\"sections\\\":[{\\\"sectionType\\\":\\\"Hero\\\",\\\"logo\\\":null,\\\"backgroundImage\\\":null,\\\"overlay\\\":{\\\"visible\\\":true,\\\"userHasToggledOverlay\\\":false},\\\"title\\\":{\\\"text\\\":\\\"\\\",\\\"align\\\":\\\"center\\\"},\\\"subtitle\\\":{\\\"text\\\":\\\"\\\",\\\"align\\\":\\\"center\\\"},\\\"sectionId\\\":\\\"00000000-0000-0000-0000-000000000000\\\"},{\\\"sectionType\\\":\\\"Gallery\\\",\\\"title\\\":{\\\"text\\\":\\\"Section Name\\\",\\\"align\\\":\\\"left\\\"},\\\"description\\\":{\\\"text\\\":\\\"\\\",\\\"align\\\":\\\"left\\\"},\\\"sectionId\\\":\\\"00000000-0000-0000-0000-000000000000\\\"}]}\"","description":"

(Required) Branded portal page layout

\n"}]},"url":"https://api.mediavalet.com/brandedportals","description":"

Creates a branded portal with hero section and one additional section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"fde756f0-b2ca-4c05-8fd3-42168f42d605","name":"The branded portal was successfully created.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"name","value":"magna dolor pariatur aliquip laborum"},{"key":"host","value":"nulla sit"},{"key":"path","value":"ea culpa proident"},{"key":"pageLayout","value":"aliqui"}]},"url":"https://api.mediavalet.com/brandedportals"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"liveVersion\": \"00000000-0000-0000-0000-000000000000\",\n \"draftVersion\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"laborum incididunt ad\",\n \"status\": \"Unknown\",\n \"createdAt\": \"1970-06-07T18:37:28.372Z\",\n \"host\": \"ut pariatur sint consectetur eu\",\n \"path\": \"fugiat anim esse laboris est\",\n \"liveHost\": \"ut proident deserunt\",\n \"livePath\": \"Ut officia adipisicing id sint\",\n \"pageLayout\": \"sed qui voluptate\",\n \"lastPublishedAt\": \"1968-06-25T04:44:16.921Z\",\n \"draftModifiedAt\": \"2013-03-24T05:34:36.145Z\",\n \"lastModifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"elit do Ut\",\n \"firstName\": \"id mollit sunt proident\",\n \"lastName\": \"nisi non\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": false\n },\n \"navigationSettings\": {\n \"showNavigation\": false\n },\n \"searchSettings\": {\n \"allowSearch\": false\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": true,\n \"accessKey\": \"consequat\"\n },\n \"highlightColour\": {\n \"highlightColour\": \"ut\"\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"nulla aliquip ut\",\n \"backgroundHeaderColor\": \"mollit\",\n \"backgroundMainColor\": \"consectetur deserunt laborum ut officia\",\n \"backgroundPageColor\": \"ipsum non dolore\",\n \"backgroundReviewActionsColor\": \"nostrud enim dolore culpa\",\n \"buttonColor\": \"pariatur Duis fugiat id commodo\",\n \"buttonInactiveColor\": \"in in consectetur mollit eiusmod\",\n \"highlightColor\": \"labore deserunt irure in\",\n \"lineColor\": \"enim sed\",\n \"overlayColor\": \"nisi occaecat qui\",\n \"tableOddRowColor\": \"aliquip Excepteur ad ea aute\",\n \"textColor\": \"mollit\",\n \"textHighlightColor\": \"fugiat laborum Excepteur\",\n \"textInactiveColor\": \"amet\",\n \"treeFolderColor\": \"nostrud id occaecat culpa\",\n \"textTreeColor\": \"aute elit veniam officia\",\n \"backgroundTableHeaderColor\": \"nisi et nostrud\",\n \"backgroundModalHeaderColor\": \"dolore labore exercitation pariatur\",\n \"focusOutlineColor\": \"ut nisi aliqua con\"\n },\n \"defaultLogoFilePath\": \"dolor ullamco Duis\",\n \"_links\": {\n \"self\": \"ex fugiat eiusmod\",\n \"functions\": [\n \"a\",\n \"cupidatat in proident Duis ea\"\n ]\n }\n}"},{"id":"04f730dc-bb9f-4725-9b8d-7f73e4e84572","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"name","value":"magna dolor pariatur aliquip laborum"},{"key":"host","value":"nulla sit"},{"key":"path","value":"ea culpa proident"},{"key":"pageLayout","value":"aliqui"}]},"url":"https://api.mediavalet.com/brandedportals"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2ac59810-08cb-447f-b809-8006b72c8f43","name":"Conflict has occurred. Either duplicate name or url.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"name","value":"magna dolor pariatur aliquip laborum"},{"key":"host","value":"nulla sit"},{"key":"path","value":"ea culpa proident"},{"key":"pageLayout","value":"aliqui"}]},"url":"https://api.mediavalet.com/brandedportals"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"76120c61-089d-44da-9476-e98eb8f4007b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"00000000-0000-0000-0000-000000000000"},{"key":"name","value":"magna dolor pariatur aliquip laborum"},{"key":"host","value":"nulla sit"},{"key":"path","value":"ea culpa proident"},{"key":"pageLayout","value":"aliqui"}]},"url":"https://api.mediavalet.com/brandedportals"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"54e62cb6-e4e1-4d63-8ab0-c36a69546431"},{"name":"Add Assets In Branded Portal Section","id":"376f774d-e159-4fac-85d8-b351c0fee47f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"00000000-0000-0000-0000-000000000000","description":"

The asset id.

\n"},{"key":"1","value":"00000000-0000-0000-0000-000000000000","description":"

The asset id.

\n"}]},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","description":"

Adds assets to specific branded portal section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"23c00dc7-7272-4341-a88c-04330d91ed64","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"brandedPortalId"},{"id":"d0d81e7a-da1c-4582-9714-e9757b75c75a","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"sectionId"}]}},"response":[{"id":"3afacb03-394f-4be0-bf07-984019078255","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"4aecc921-d608-44db-a06a-baf8ee5b7ad6","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d8bcb96a-b5ad-433f-94f7-356c38a32e80","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"376f774d-e159-4fac-85d8-b351c0fee47f"},{"name":"Remove Assets From A Branded Portal Section","id":"4d203db3-24e5-4d7f-b547-f251a6e4f6ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"0","value":"00000000-0000-0000-0000-000000000000","description":"

The asset id.

\n"},{"key":"1","value":"00000000-0000-0000-0000-000000000000","description":"

The asset id.

\n"}]},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","description":"

Remove assets from specific branded portal section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"18cabad0-fcab-496e-9bcb-17e18ea3fbc2","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"brandedPortalId"},{"id":"26bc13b0-8b7f-4b9d-8524-dee3074244e2","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"sectionId"}]}},"response":[{"id":"e9306a2e-0930-40b1-915f-fc7f4e35489a","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"DELETE","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"92e340f4-8017-4135-b9db-d8fe09ec262f","name":"The branded portal was not found.","originalRequest":{"method":"DELETE","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"964e7f97-6c39-4ce8-9fba-f86f45b91118","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4d203db3-24e5-4d7f-b547-f251a6e4f6ee"},{"name":"Publish Branded Portal","id":"c8b01543-537c-4b71-b375-791e4bdb1899","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"

(Required) The subscription key of your api plan.

\n","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","description":"

Publish branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","publish"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"0afc3fcd-36bd-464b-a781-f528d007db37","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"brandedPortalId"}]}},"response":[{"id":"5bdc1568-b286-4463-859a-d6388c13fb14","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","publish"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"liveVersion\": \"00000000-0000-0000-0000-000000000000\",\n \"draftVersion\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"laborum incididunt ad\",\n \"status\": \"Unknown\",\n \"createdAt\": \"1970-06-07T18:37:28.372Z\",\n \"host\": \"ut pariatur sint consectetur eu\",\n \"path\": \"fugiat anim esse laboris est\",\n \"liveHost\": \"ut proident deserunt\",\n \"livePath\": \"Ut officia adipisicing id sint\",\n \"pageLayout\": \"sed qui voluptate\",\n \"lastPublishedAt\": \"1968-06-25T04:44:16.921Z\",\n \"draftModifiedAt\": \"2013-03-24T05:34:36.145Z\",\n \"lastModifiedBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"username\": \"elit do Ut\",\n \"firstName\": \"id mollit sunt proident\",\n \"lastName\": \"nisi non\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": false\n },\n \"navigationSettings\": {\n \"showNavigation\": false\n },\n \"searchSettings\": {\n \"allowSearch\": false\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": true,\n \"accessKey\": \"consequat\"\n },\n \"highlightColour\": {\n \"highlightColour\": \"ut\"\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"nulla aliquip ut\",\n \"backgroundHeaderColor\": \"mollit\",\n \"backgroundMainColor\": \"consectetur deserunt laborum ut officia\",\n \"backgroundPageColor\": \"ipsum non dolore\",\n \"backgroundReviewActionsColor\": \"nostrud enim dolore culpa\",\n \"buttonColor\": \"pariatur Duis fugiat id commodo\",\n \"buttonInactiveColor\": \"in in consectetur mollit eiusmod\",\n \"highlightColor\": \"labore deserunt irure in\",\n \"lineColor\": \"enim sed\",\n \"overlayColor\": \"nisi occaecat qui\",\n \"tableOddRowColor\": \"aliquip Excepteur ad ea aute\",\n \"textColor\": \"mollit\",\n \"textHighlightColor\": \"fugiat laborum Excepteur\",\n \"textInactiveColor\": \"amet\",\n \"treeFolderColor\": \"nostrud id occaecat culpa\",\n \"textTreeColor\": \"aute elit veniam officia\",\n \"backgroundTableHeaderColor\": \"nisi et nostrud\",\n \"backgroundModalHeaderColor\": \"dolore labore exercitation pariatur\",\n \"focusOutlineColor\": \"ut nisi aliqua con\"\n },\n \"defaultLogoFilePath\": \"dolor ullamco Duis\",\n \"_links\": {\n \"self\": \"ex fugiat eiusmod\",\n \"functions\": [\n \"a\",\n \"cupidatat in proident Duis ea\"\n ]\n }\n}"},{"id":"a2f913cb-7c93-4c60-896b-c7512d688819","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","publish"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"8ee07790-aeda-4fa9-95f0-0c55e8ead791","name":"Conflict has occurred. Branded portal URL already exists.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","publish"],"variable":[{"key":"brandedPortalId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"61d9e3bd-b93a-4afd-88a1-82f2c8e13ab3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"description":"(Required) The subscription key of your api plan.","key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","publish"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c8b01543-537c-4b71-b375-791e4bdb1899"}],"id":"550304d0-5d74-4ed0-bd59-0cd7255c7da7","description":"

List API calls for creating Branded Portals.

\n","_postman_id":"550304d0-5d74-4ed0-bd59-0cd7255c7da7","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Retrieve and Search Assets From A Live Branded Portal","item":[{"name":"Retrieve Assets From Specific Section","id":"0f42b217-2c0b-456e-9a4a-0be9dc9a6f27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"},{"key":"x-api-uri","value":"https://mv-api-whistler.mediavalet.com"}],"url":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets?count=10&offset=0&includeTotalCount=true","description":"

Returns assets from specific section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Count of assets to retrieve

\n","type":"text/plain"},"key":"count","value":"10"},{"description":{"content":"

Count of assets to skip

\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"

Include total count

\n","type":"text/plain"},"key":"includeTotalCount","value":"true"}],"variable":[{"id":"015ac990-6906-4e99-a3a3-cc6c202daa03","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"libraryId"},{"id":"b03ac4e4-4a43-4077-aae2-94a94712d34c","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"brandedPortalId"},{"id":"a9530307-6ea6-4ea0-a83f-ebe43d749431","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"sectionId"}]}},"response":[{"id":"1ac0e3f1-3e5f-4307-bf0f-149b3526a56e","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": 30413661,\n \"assets\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"commodo est qui\",\n \"media\": {\n \"type\": \"ut nisi dolor in\",\n \"small\": \"tempor consequat ipsum minim\",\n \"thumb\": \"minim enim proident elit\",\n \"large\": \"et ea aliquip\",\n \"medium\": \"sed laborum Lorem\",\n \"download\": \"commodo\",\n \"preview\": \"enim dolor ut\",\n \"downloadRequest\": \"occaecat\",\n \"stream\": \"ut cupidatat sint\",\n \"sasExpiry\": 40545681,\n \"sasRenewal\": -28145299,\n \"renditionItemCount\": -45074282,\n \"autodeskUrn\": \"enim in commodo in est\"\n },\n \"file\": {\n \"title\": \"minim dolore eu reprehenderit\",\n \"fileName\": \"conseq\",\n \"fileType\": \"enim anim\"\n }\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"irure dolore nisi consectetur\",\n \"media\": {\n \"type\": \"cupidatat culpa dolor id exercitat\",\n \"small\": \"laboris sunt id officia\",\n \"thumb\": \"amet\",\n \"large\": \"mollit aute sit\",\n \"medium\": \"reprehenderit dolor occaecat id pariatur\",\n \"download\": \"in quis elit\",\n \"preview\": \"et amet consequat in\",\n \"downloadRequest\": \"eu irure veniam minim magna\",\n \"stream\": \"sed deserunt\",\n \"sasExpiry\": 85913477,\n \"sasRenewal\": -7737648,\n \"renditionItemCount\": 37921411,\n \"autodeskUrn\": \"adipisic\"\n },\n \"file\": {\n \"title\": \"ad et\",\n \"fileName\": \"id esse voluptate occaecat est\",\n \"fileType\": \"deserunt Lorem ad\"\n }\n }\n ]\n}"},{"id":"4426e716-d4dd-488b-a70b-4031fdb58cc1","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a742fe8a-1548-46be-801a-b17db4ce0de5","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d4dae1c3-ab5f-4f26-94cb-f82812203aa4","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0f42b217-2c0b-456e-9a4a-0be9dc9a6f27"},{"name":"Search Assets From Any Section","id":"4ce2f8a0-993f-40ad-ac79-6ef77667b51a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"},{"key":"x-api-uri","value":"https://mv-api-whistler.mediavalet.com"}],"url":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets?count=10&offset=0&search=test§ionIdsToExclude=00000000-0000-0000-0000-000000000001&includeTotalCount=true","description":"

Returns filtered assets from any section.\n
\nEnables search assets by title and file extension by using search term.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Count of assets to retrieve

\n","type":"text/plain"},"key":"count","value":"10"},{"description":{"content":"

Count of assets to skip

\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"

Search by file title and extension

\n","type":"text/plain"},"key":"search","value":"test"},{"description":{"content":"

Do not search in sections

\n","type":"text/plain"},"key":"sectionIdsToExclude","value":"00000000-0000-0000-0000-000000000001"},{"description":{"content":"

Include total count

\n","type":"text/plain"},"key":"includeTotalCount","value":"true"}],"variable":[{"id":"4d089e0b-4748-4fd4-9fb9-0c3a0158e2e0","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"libraryId"},{"id":"9f604615-e397-48ed-b5a0-d764b4ccfa02","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","key":"brandedPortalId"}]}},"response":[{"id":"c30e3e32-6654-4e98-a20a-0c9815cc1b83","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": -64523075,\n \"assets\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"dolor est cupidata\",\n \"media\": {\n \"type\": \"veniam Ut\",\n \"small\": \"ea id\",\n \"thumb\": \"reprehe\",\n \"large\": \"dolor tempor exercitation\",\n \"medium\": \"aliqua pariatur\",\n \"download\": \"enim nisi\",\n \"preview\": \"minim Lorem nisi velit\",\n \"downloadRequest\": \"fugiat irure voluptate\",\n \"stream\": \"consequat ad et minim esse\",\n \"sasExpiry\": 72040668,\n \"sasRenewal\": -76095552,\n \"renditionItemCount\": 89007248,\n \"autodeskUrn\": \"ut cupidatat\"\n },\n \"file\": {\n \"title\": \"pariatur Duis velit\",\n \"fileName\": \"sint eiusmod\",\n \"fileType\": \"cillum irure\"\n }\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"title\": \"adipisicing aliquip sunt\",\n \"media\": {\n \"type\": \"et labore dolor tempor\",\n \"small\": \"proident occaecat Lorem consequat ullamco\",\n \"thumb\": \"id\",\n \"large\": \"in aliqua\",\n \"medium\": \"amet magna in sit quis\",\n \"download\": \"nostrud\",\n \"preview\": \"mollit eiusmod Ut aliquip\",\n \"downloadRequest\": \"consequat sed\",\n \"stream\": \"fugiat velit laborum ullamco\",\n \"sasExpiry\": -12179325,\n \"sasRenewal\": 1834405,\n \"renditionItemCount\": -95424404,\n \"autodeskUrn\": \"est in Excepteur\"\n },\n \"file\": {\n \"title\": \"sed commodo\",\n \"fileName\": \"cillum aliquip\",\n \"fileType\": \"anim esse consectetur ut\"\n }\n }\n ]\n}"},{"id":"5561d1c3-9192-4c23-a4d9-d0835e2d0173","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"27055b10-bafb-4117-b697-6269685b2d8b","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3241930b-b722-487b-bb11-bf276bef8ebd","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"urn:uuid:3dd14d08-cca0-2f4c-d28f-c9bdaa055b1d","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4ce2f8a0-993f-40ad-ac79-6ef77667b51a"}],"id":"24bdd378-e138-4294-8c0f-146296ca126b","description":"

List all API calls for retrieving and searching Branded Portal assets.

\n","_postman_id":"24bdd378-e138-4294-8c0f-146296ca126b","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}}],"id":"f84a332c-ac2d-4dac-92e2-f9a6d85103b1","description":"

First step is to create a Branded Portal and then you will be able to add/remove assets to/from sections. To make Branded Portal and your changes visible live, you need to Publish Branded Portal.\n
\nOnce the Branded Portal is live, assets can be retrieved through API call.

\n","_postman_id":"f84a332c-ac2d-4dac-92e2-f9a6d85103b1","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"How to Create a webhook for an Event","item":[{"name":"01. Get Events Types","id":"0c4b384e-a9d2-4909-b638-f17dd15297c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"url":"https://api.mediavalet.com/skyhook/events","description":"

Return all Events Types that you can Subscribe to. Take note of the Event Name you will need to create a subscription.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","events"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c4b384e-a9d2-4909-b638-f17dd15297c7"},{"name":"02. Create Subscription","id":"c7af90d7-c8e7-40fc-892b-35c07fe8f01a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{ \r\n \"Events\": [\r\n {\r\n \"Name\": \"{Event Name}\"\r\n }\r\n ],\r\n \"Type\": \"webhook\",\r\n \"Data\": {\r\n \"webhook\": \"{Webhook URL}\"\r\n }\r\n}"},"url":"https://api.mediavalet.com/skyhook/subscriptions","description":"

Create a Subscription for your own Webhook URL.

\n

Use the Event Name form the Get Events request.

\n

You must ensure that your Webhook URL will respond with the Validation Response Code. You can read more Here; If SkyBridge fails to validate the URL the subscription will not be created.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","subscriptions"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c7af90d7-c8e7-40fc-892b-35c07fe8f01a"},{"name":"03. Get Subscription","id":"d06dc134-6851-4a46-9079-ef3e1a7984df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"url":"https://api.mediavalet.com/skyhook/subscriptions/list","description":"

Return all the Subscriptions that you are subscribed to.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","subscriptions","list"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d06dc134-6851-4a46-9079-ef3e1a7984df"},{"name":"04. Update Subscription","id":"4a5adcfc-04c9-4ee8-961f-e41488dbea84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{ \r\n \"Events\": [\r\n {\r\n \"Name\": \"{Event Type}\"\r\n }\r\n ],\r\n \"Type\": \"webhook\",\r\n \"Data\": {\r\n \"webhook\": \"{Webhook URL}\"\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/skyhook/subscriptions/{{subscriptionID}}","description":"

Update Subscription's. Subscription ID's can be found by using the Get Subscription endpoint.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","subscriptions","{{subscriptionID}}"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a5adcfc-04c9-4ee8-961f-e41488dbea84"}],"id":"3af4445c-806c-4e8b-a84f-ca5897003c0c","description":"

SkyHOOK uses the CloudEvent v1.0 specification. More details: Here

\n

How to Authenticate can read more: Here

\n

Subscribing to an Event

\n

To create a subscription using your own WebHook URL, you first need to validate the URL by returning the validation code SkyHOOK Post to your WebHook URL.

\n

A handshake validation will be executed using CloudEvents v1.0. Please read the semantic in section 4. Abuse Protection for understanding the details on fields you will use.

\n

Upon a subscription request, your endpoint will receive the handshake validation request, the validation request uses the HTTP OPTIONS method. You can choose to validate it as follows:

\n

1- Synchronously by including the HTTP Header fields WebHook-Allowed-Origin and WebHook-Allowed-Rate, and their respective values to the HTTP 200 response.\nThe response header WebHook-Allowed-Origin could return * or the same value received in the request header WebHook-Request-Origin.

\n

Example:

\n
WebHook-Allowed-Origin: eventemitter.example.com\n
WebHook-Allowed-Rate: 120\n

2- Asynchronously by executing a call to the endpoint URL from HTTP Header field WebHook-Request-Callback.

\n

Example:

\n
WebHook-Request-Callback: https://example.com/confirm?id=12345&key=...\n
","_postman_id":"3af4445c-806c-4e8b-a84f-ca5897003c0c","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"How to register and manage a ThirdParty integration","item":[{"name":"01. List your tenant's existing integrations","id":"928e42f8-3619-4326-a580-9e7e45402f9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/apps/tenant","description":"

Returns every integration registered to your tenant. Use this as a sanity check before registering a new one so you don't create duplicates.

\n

Response

\n

The response payload is an array of integrations. Key fields per item:

\n
    \n
  • appId is the integration's UUID. Save this for subsequent calls.
  • \n
  • appType is \"native\" (managed by MediaValet, cannot be modified or deleted via this surface) or \"thirdParty\" (manageable via the rest of this guide).
  • \n
  • appName, appDescription, iconUrl are the partner-facing labels you set at registration time.
  • \n
\n
{\n    \"apiVersion\": \"1.2\",\n    \"buildVersion\": \"1.0.0.0\",\n    \"payload\": [\n        {\n            \"appId\": \"f73f8249-fa46-4444-9d78-6d83f92246a4\",\n            \"appName\": \"Drupal\",\n            \"appType\": \"native\"\n        }\n    ],\n    \"recordCount\": { \"totalRecordsFound\": 1, \"startingRecord\": 0, \"recordsReturned\": 1 },\n    \"meta\": { \"metaInformation\": { \"correlationId\": \"...\" } }\n}\n
\n

If your integration isn't already in the list, move to step 02 to register it.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","apps","tenant"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"928e42f8-3619-4326-a580-9e7e45402f9e"},{"name":"02. Register your ThirdParty integration","id":"3ba895ba-9da7-4c46-82d5-9f0a74d364c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"appName\": \"My ThirdParty Integration\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/apps","description":"

Create a new ThirdParty integration in your tenant. The response payload.id is the new integration's UUID; save it, as every subsequent call in this guide uses it as the appId path parameter.

\n

Request

\n
{\n    \"appName\": \"My ThirdParty Integration\"\n}\n
\n
    \n
  • appName is the partner-facing display name — the only required field.
  • \n
\n

The following fields are optional and can be added at create time if you want them shown:

\n
    \n
  • appDescription — a short description of the integration.
  • \n
  • iconUrl — a public URL to an icon image (square, 256x256 recommended).
  • \n
  • currentVersion — your integration's version string.
  • \n
\n

Response

\n
{\n    \"apiVersion\": \"1.2\",\n    \"payload\": {\n        \"id\": \"00000000-0000-0000-0000-000000000000\"\n    },\n    \"meta\": { \"metaInformation\": { \"correlationId\": \"...\" } }\n}\n
\n

Save payload.id for subsequent calls.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","apps"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ba895ba-9da7-4c46-82d5-9f0a74d364c8"},{"name":"03. Verify your new integration appears","id":"00837015-9631-4689-8c5b-d0811014262a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/apps/tenant","description":"

Re-list your tenant's integrations and confirm the one you just registered appears in payload with appType: \"thirdParty\". Same call as step 01; this is the verification step. Skip it if you already saved the payload.id from step 02.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","apps","tenant"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"00837015-9631-4689-8c5b-d0811014262a"},{"name":"04. List allowed origins for your integration","id":"227fdfeb-8fa1-4551-b63b-f22b773348eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/allowed-origins?appId={{appId}}","description":"

List every origin currently whitelisted for the given integration's CSP allowlist. For a brand-new integration this returns an empty array; you'll add origins in step 05.

\n

The appId query parameter is required. Pass the id of the integration from step 02.

\n

Response

\n
{\n    \"apiVersion\": \"1.2\",\n    \"payload\": [\n        {\n            \"id\": \"00000000-0000-0000-0000-000000000000\",\n            \"appId\": \"00000000-0000-0000-0000-000000000000\",\n            \"origin\": \"https://your-app.example.com\"\n        }\n    ],\n    \"recordCount\": { \"totalRecordsFound\": 1, \"startingRecord\": 0, \"recordsReturned\": 1 },\n    \"meta\": { \"metaInformation\": { \"correlationId\": \"...\" } }\n}\n
\n
    \n
  • id is the allowed-origin's UUID. Save the ones you want to remove later (step 07).
  • \n
  • origin is the full scheme + host + (optional) port.
  • \n
\n

When you embed a MediaValet UI in an iframe at https://your-app.example.com, the iframe checks that the hosting origin is in this list. If it isn't, the embed is blocked at the browser level by CSP. You must register every origin that will host the embed.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","allowed-origins"],"host":["https://api.mediavalet.com"],"query":[{"key":"appId","value":"{{appId}}"}],"variable":[]}},"response":[],"_postman_id":"227fdfeb-8fa1-4551-b63b-f22b773348eb"},{"name":"05. Whitelist an origin for iframe embedding","id":"0b1a0a36-e116-4152-b05a-9cb5d257dd64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"appId\": \"{{appId}}\",\n \"origin\": \"https://your-app.example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/allowed-origins","description":"

Add an origin (scheme + host + optional port) to the CSP allowlist for your integration. The change takes effect immediately; refresh your embedding page and the iframe should load.

\n

Request

\n
{\n    \"appId\": \"00000000-0000-0000-0000-000000000000\",\n    \"origin\": \"https://your-app.example.com\"\n}\n
\n
    \n
  • appId is the integration's id from step 02.
  • \n
  • origin is the full origin: https://your-app.example.com. Include the scheme, the host, and (if non-default) the port. Do not include a trailing slash or a path.
  • \n
\n

Response

\n
{\n    \"apiVersion\": \"1.2\",\n    \"payload\": \"00000000-0000-0000-0000-000000000000\",\n    \"meta\": { \"metaInformation\": { \"correlationId\": \"...\" } }\n}\n
\n

payload is the new allowed-origin id (a UUID returned as a string). Save it for step 07.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","allowed-origins"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b1a0a36-e116-4152-b05a-9cb5d257dd64"},{"name":"06. Verify the origin is registered","id":"4ef28453-ce60-40cb-9d8e-80fa042c7b63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/allowed-origins?appId={{appId}}","description":"

Re-list the origins for your integration and confirm the one you just added appears in payload. Same call as step 04. Note the id of any origin you might want to remove later.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","allowed-origins"],"host":["https://api.mediavalet.com"],"query":[{"key":"appId","value":"{{appId}}"}],"variable":[]}},"response":[],"_postman_id":"4ef28453-ce60-40cb-9d8e-80fa042c7b63"},{"name":"07. Remove one or more origins","id":"e2edf810-9db9-4d41-8713-1143e8080c06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"ids\": [\n \"{{originId}}\"\n ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/allowed-origins/batch","description":"

Remove one or more origins by id. Pass a single-element array to remove just one. The change takes effect immediately; refresh any embedding page that was using a removed origin and the iframe should fail to load.

\n

Only origins belonging to your tenant can be removed.

\n

Request

\n
{\n    \"ids\": [\n        \"00000000-0000-0000-0000-000000000000\"\n    ]\n}\n
\n
    \n
  • ids is an array of allowed-origin ids to remove. Single-element arrays are fine.
  • \n
\n

Response

\n
{\n    \"apiVersion\": \"1.2\",\n    \"payload\": {\n        \"removed\": 1\n    },\n    \"meta\": { \"metaInformation\": { \"correlationId\": \"...\" } }\n}\n
\n

payload.removed is the count of origins actually removed.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","allowed-origins","batch"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2edf810-9db9-4d41-8713-1143e8080c06"},{"name":"08. Rename your integration (optional)","id":"74a24be2-bde8-4dc1-9d2e-f171fc9ef730","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"appName\": \"My ThirdParty Integration (renamed)\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/apps/{{appId}}/name","description":"

Rename a ThirdParty integration. Use this when your integration's marketing label changes but its identity (the appId) stays the same. Native integrations cannot be renamed; the handler returns 400.

\n

The {id} path parameter is the integration's appId from step 02.

\n

Request

\n
{\n    \"appName\": \"My ThirdParty Integration (renamed)\"\n}\n
\n
    \n
  • appName is the new display name.
  • \n
\n

Response

\n
{\n    \"apiVersion\": \"1.2\",\n    \"payload\": {\n        \"appId\": \"00000000-0000-0000-0000-000000000000\",\n        \"appName\": \"My ThirdParty Integration (renamed)\",\n        \"appType\": \"thirdParty\"\n    },\n    \"meta\": { \"metaInformation\": { \"correlationId\": \"...\" } }\n}\n
\n

payload is the updated integration object (same shape as a single item from step 01).

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","apps","{{appId}}","name"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"74a24be2-bde8-4dc1-9d2e-f171fc9ef730"},{"name":"09. Delete your integration when done","id":"6a192f14-8346-4f94-87ff-33836e4f229f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/apps/{{appId}}","description":"

Delete a ThirdParty integration owned by your tenant. Once deleted, the integration stops appearing in list responses.

\n

The {id} path parameter is the integration's appId from step 02.

\n

Deleting an integration does not automatically remove its allowed origins; step 07 handles those separately. If you want to fully tear down an integration, run step 07 with all the origin ids before this step.

\n

Native integrations cannot be deleted via this endpoint. Returns 404 if the integration doesn't exist or isn't owned by your tenant.

\n

Response

\n

204 No Content on success. No body.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","apps","{{appId}}"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a192f14-8346-4f94-87ff-33836e4f229f"}],"id":"1c4a071b-e2ea-43ab-888d-ecc38687ab98","description":"

ThirdParty integrations let you register your own app inside a customer's MediaValet tenant. Once registered, you can embed MediaValet experiences (asset picker, brand portal viewer, etc.) in an iframe on a page your customer hosts, subject to the allowed-origins CSP whitelist on the integration.

\n

This guide walks the full lifecycle of a ThirdParty integration end-to-end. It is a 9 step process.

\n
    \n
  1. Discover what integrations the calling tenant already has.

    \n
  2. \n
  3. Register a new ThirdParty integration.

    \n
  4. \n
  5. Verify the registration.

    \n
  6. \n
  7. List the integration's current allowed origins (empty for a new integration).

    \n
  8. \n
  9. Whitelist the origin of any page that will embed MediaValet UI from this integration.

    \n
  10. \n
  11. Verify the whitelist.

    \n
  12. \n
  13. Remove origins when they're no longer needed.

    \n
  14. \n
  15. Rename the integration if its label changes.

    \n
  16. \n
  17. Delete the integration when you're done with it.

    \n
  18. \n
\n

End-to-end the flow takes about 5 minutes.

\n

Frequently Asked Questions

\n
    \n
  • What's the difference between Native and ThirdParty integrations? Native integrations (Drupal, WordPress, Monday) are managed by MediaValet and pre-installed in every tenant. ThirdParty integrations are registered by customers via this API and can be deleted.

    \n
  • \n
  • Why do I need to whitelist origins? When you embed MediaValet UI in an iframe hosted on a page at, say, https://your-app.example.com, the iframe checks that the hosting origin is in the integration's allowlist. Origins not on the list are blocked at the browser level by CSP.

    \n
  • \n
  • Does deleting an integration also remove its allowed origins? No. Deleting an integration leaves its allowed origins in place. Run step 7 with the origin ids before step 9 to fully tear down an integration.

    \n
  • \n
\n","_postman_id":"1c4a071b-e2ea-43ab-888d-ecc38687ab98","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}}],"id":"4ea51e9f-bfd3-4f2d-9469-3bec0295ea37","description":"

This document provides samples of the most common flows to support developers getting started with the MediaValet API.

\n

You can improve your experience navigating in the guide running in postman.

\n

\"Run

\n
Before executing the API:
\n
    \n
  1. Select your Postman environment and update the environment variables.

    \n
  2. \n
  3. Select the How To Guides folder, and navigate to the Authorization tab.

    \n
  4. \n
  5. Verify the details and authenticate/authorize to generate your access token using OAuth 2.0. Check out how to do it in postman clicking here.

    \n
  6. \n
\n","event":[{"listen":"prerequest","script":{"id":"81201100-91c0-44c8-84c6-60393a7da679","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"75446ed3-5758-4420-9e17-ad40fc1cfafb","type":"text/javascript","exec":[""]}}],"_postman_id":"4ea51e9f-bfd3-4f2d-9469-3bec0295ea37","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"API Endpoints","item":[{"name":"Assets","item":[{"name":"Check-In Asset","id":"ddeee698-4034-42c2-9f8e-273044cec6db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assetCheckIn/:assetId","description":"

ChecksIn an asset and returns newly created asset media file information.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assetCheckIn",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"3da16fa2-c16d-413e-9bd6-75fc80294166","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"341af1c8-dae7-47a1-8878-7c63d694dcbf","name":"Request was accepted.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"uploadUrl\": \"\",\n \"uploadFileName\": \"\",\n \"mediaFileId\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ullamco__8\": {},\n \"aliquaed5\": {},\n \"quiddd\": {}\n },\n \"interpolations\": {\n \"reprehenderita\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:share\"\n ]\n}"},{"id":"4ce28194-4e38-4901-9fc8-9d421b44539e","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"53729a9b-2947-4ebe-90db-83e98d3503ff","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ddeee698-4034-42c2-9f8e-273044cec6db"},{"name":"Update Checked-In Asset","id":"097836ad-90f4-45aa-b4aa-54bf863ab444","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"comment\": \"\",\n \"status\": \"\",\n \"fileSizeInBytes\": \"\",\n \"uploadFilename\": \"\",\n \"fileName\": \"\",\n \"uploadUrl\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assetCheckIn/:assetId","description":"

Update asset's checked-in.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assetCheckIn",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"5aedb44a-225c-42c4-a19a-1de166d1d7ab","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"742e6c01-1981-4ff6-ade4-c1ed9d1ac245","name":"Request was accepted.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"comment\": \"\",\n \"status\": \"\",\n \"fileSizeInBytes\": \"\",\n \"uploadFilename\": \"\",\n \"fileName\": \"\",\n \"uploadUrl\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet_a0e\": \"\",\n \"culpa_16\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"Ut_86\": \"\",\n \"consectetur7c\": \"\",\n \"voluptate_94\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud389\": {},\n \"non186\": {},\n \"amet_668\": {}\n },\n \"interpolations\": {\n \"incididunt4d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"6b276438-c34f-4c91-9e18-17acdb7af02f","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"comment\": \"\",\n \"status\": \"\",\n \"fileSizeInBytes\": \"\",\n \"uploadFilename\": \"\",\n \"fileName\": \"\",\n \"uploadUrl\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in1e\": {},\n \"officiaef\": {},\n \"deserunt8\": {}\n },\n \"interpolations\": {\n \"nisi_a\": {},\n \"consequat_7_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"fc1331ba-5d78-439c-9a63-59cc99be9088","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"comment\": \"\",\n \"status\": \"\",\n \"fileSizeInBytes\": \"\",\n \"uploadFilename\": \"\",\n \"fileName\": \"\",\n \"uploadUrl\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"845148e3-420f-4988-81d1-385fafa7c03e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"comment\": \"\",\n \"status\": \"\",\n \"fileSizeInBytes\": \"\",\n \"uploadFilename\": \"\",\n \"fileName\": \"\",\n \"uploadUrl\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:assetId","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"097836ad-90f4-45aa-b4aa-54bf863ab444"},{"name":"Assets Get Faces In Asset","id":"02d9cf8b-1b7e-4392-b5b1-e06a134ed5a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/faces","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","faces"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"a222860c-555b-4e64-9c7c-ce2355826511","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"f7424105-7d2c-4b57-8d2c-6292f2346275","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/faces","host":["https://api.mediavalet.com"],"path":["assets",":assetId","faces"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"faces\": [\n {\n \"id\": \"\",\n \"personId\": \"\",\n \"personName\": \"\",\n \"identified\": \"\",\n \"identificationStatus\": \"\",\n \"faceRectangle\": {\n \"top\": \"\",\n \"left\": \"\",\n \"width\": \"\",\n \"height\": \"\"\n },\n \"thumbnailUrl\": \"\"\n },\n {\n \"id\": \"\",\n \"personId\": \"\",\n \"personName\": \"\",\n \"identified\": \"\",\n \"identificationStatus\": \"\",\n \"faceRectangle\": {\n \"top\": \"\",\n \"left\": \"\",\n \"width\": \"\",\n \"height\": \"\"\n },\n \"thumbnailUrl\": \"\"\n }\n ]\n}"},{"id":"b6dfcef8-92b5-4f87-b613-f72f155efc56","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/faces","host":["https://api.mediavalet.com"],"path":["assets",":assetId","faces"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5d6c0cfd-2b2a-4eeb-8551-baea9f8b48de","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/faces","host":["https://api.mediavalet.com"],"path":["assets",":assetId","faces"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7b3135bf-011b-4b2c-8086-b013997f7098","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/faces","host":["https://api.mediavalet.com"],"path":["assets",":assetId","faces"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"02d9cf8b-1b7e-4392-b5b1-e06a134ed5a2"},{"name":"Retrieve Video Clip","id":"6551e7f4-c781-4510-bc97-69aa514f359d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/clip/:clipId","description":"

Retrieves Video Clip details.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","clip",":clipId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"59523e48-6783-43b8-8f7b-3cbdde5e018b","description":{"content":"

(Required) The Asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"f3ce5a49-315c-4055-b6f4-70fc2de2917a","description":{"content":"

(Required) The Clip id.

\n","type":"text/plain"},"type":"any","value":"","key":"clipId"}]}},"response":[{"id":"2ee3fbc6-0942-40f6-88a2-8951a4c436eb","name":"Request was accepted.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/clip/:clipId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","clip",":clipId"],"variable":[{"key":"assetId"},{"key":"clipId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"\",\n \"clipId\": \"\",\n \"clipUrl\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"fugiat99f\": {},\n \"Utcbc\": {},\n \"culpa7_\": {},\n \"occaecat_\": {}\n },\n \"interpolations\": {\n \"Excepteur_09d\": {},\n \"eu_4_b\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:assignCategory\"\n ]\n}"},{"id":"279ed5e6-aeb0-45e4-94b6-640299858d0d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/clip/:clipId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","clip",":clipId"],"variable":[{"key":"assetId"},{"key":"clipId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"651f730f-3561-4a97-9665-6ffba82a221c","name":"The video clip was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/clip/:clipId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","clip",":clipId"],"variable":[{"key":"assetId"},{"key":"clipId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9c7c6910-a7f8-4e0e-9c13-1e886d879b4f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/clip/:clipId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","clip",":clipId"],"variable":[{"key":"assetId"},{"key":"clipId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6551e7f4-c781-4510-bc97-69aa514f359d"},{"name":"Retrieve Asset Related Assets","id":"9f97fbdc-aaf4-4c07-918a-d25f6d0c48d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/relatedassets","description":"

Retrieve related assets based on the asset id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","relatedassets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"53a92de8-2fc0-44ef-a3cb-5f893e3697e1","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"0614d208-95f6-4cad-a436-91865f0a6117","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"composite\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"non__f9\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"dolore_38\": \"\",\n \"incididuntf\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"deserunt0\": {},\n \"do99\": {},\n \"Lorem_76\": {}\n },\n \"interpolations\": {\n \"consectetur_9cb\": {},\n \"ex_a\": {}\n },\n \"permissions\": [\n \"asset:createImageCrop\",\n \"lightbox:share\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"reprehenderitf_4\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"commodo6\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"Excepteur_2\": {},\n \"Ut_d\": {},\n \"officia_fd\": {},\n \"velit_5a\": {}\n },\n \"interpolations\": {\n \"sunt3_4\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLink\"\n ]\n }\n ],\n \"derived\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet__3\": \"\",\n \"labore2f\": \"\",\n \"do7e9\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"ut__\": \"\",\n \"dolore_b2\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod_3\": {}\n },\n \"interpolations\": {\n \"Ut_8c\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"irure2\": \"\",\n \"in7\": \"\",\n \"in_96c\": \"\",\n \"dolor77\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"labore_3\": \"\",\n \"eu_842\": \"\",\n \"utb_e\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in30d\": {},\n \"sit_6\": {},\n \"esse7ed\": {}\n },\n \"interpolations\": {\n \"nisif\": {},\n \"Loremc3\": {},\n \"minim_9\": {}\n },\n \"permissions\": [\n \"asset:shareAsCdnLink\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n ]\n}"},{"id":"f30e3fb9-0a97-4d4c-876c-07f84f6ce3cb","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4f93baf8-c17e-40b5-824d-6fb1adff32ba","name":"A related asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"69971ee8-7190-4070-9e04-b4b2eb766c96","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9f97fbdc-aaf4-4c07-918a-d25f6d0c48d7"},{"name":"Create Association with Asset and Related Assets","id":"191449a0-f7a7-4582-943f-5e2489603b9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"derived\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/relatedassets","description":"

Add related assets to an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","relatedassets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"3d559d2c-7de7-4ea2-900a-1712b8de63f2","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"4fb576be-0a28-41b1-a0b5-312cea08672d","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"derived\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"composite\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"non__f9\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"dolore_38\": \"\",\n \"incididuntf\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"deserunt0\": {},\n \"do99\": {},\n \"Lorem_76\": {}\n },\n \"interpolations\": {\n \"consectetur_9cb\": {},\n \"ex_a\": {}\n },\n \"permissions\": [\n \"asset:createImageCrop\",\n \"lightbox:share\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"reprehenderitf_4\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"commodo6\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"Excepteur_2\": {},\n \"Ut_d\": {},\n \"officia_fd\": {},\n \"velit_5a\": {}\n },\n \"interpolations\": {\n \"sunt3_4\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLink\"\n ]\n }\n ],\n \"derived\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet__3\": \"\",\n \"labore2f\": \"\",\n \"do7e9\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"ut__\": \"\",\n \"dolore_b2\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod_3\": {}\n },\n \"interpolations\": {\n \"Ut_8c\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"irure2\": \"\",\n \"in7\": \"\",\n \"in_96c\": \"\",\n \"dolor77\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"labore_3\": \"\",\n \"eu_842\": \"\",\n \"utb_e\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in30d\": {},\n \"sit_6\": {},\n \"esse7ed\": {}\n },\n \"interpolations\": {\n \"nisif\": {},\n \"Loremc3\": {},\n \"minim_9\": {}\n },\n \"permissions\": [\n \"asset:shareAsCdnLink\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n ]\n}"},{"id":"055a34c2-5fda-4365-ba0a-ff5f1254abb4","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"derived\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"99ea599c-85c7-46b2-a7e8-b00a0c6ed1d6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"derived\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"191449a0-f7a7-4582-943f-5e2489603b9a"},{"name":"Retrieve Video Intelligence Limits","id":"c8b73479-ff98-4ac5-a772-e9e3f645006d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/videoIntelligence/limits","description":"

Retrieves video intelligence limits and usage information.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets","videoIntelligence","limits"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"1d12a93f-49a9-4142-b524-be09b33707b7","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/videoIntelligence/limits"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": \"\",\n \"allottedCredits\": \"\",\n \"maximumRunTime\": \"\",\n \"totalAssetsIndexed\": \"\",\n \"remainingCredit\": \"\"\n}"},{"id":"2e33e31c-075b-42b3-a14a-fdca52c45f32","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/assets/videoIntelligence/limits"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f5623ec5-685b-486f-876b-480f79bc82ac","name":"The video intelligence was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/assets/videoIntelligence/limits"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e10cfabe-2620-489e-af36-fc3d41f81dbf","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/assets/videoIntelligence/limits"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c8b73479-ff98-4ac5-a772-e9e3f645006d"},{"name":"Retrieve Asset Metadata","id":"d175a091-7e6f-4b22-a283-a095c79a1c4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/:metadataType","description":"

Retrieve meta data for an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId",":metadataType"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"a30af6f9-db98-4656-b472-60c1f17006b3","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"dc70062c-af3e-44cc-9eac-e5523ebe7a93","description":{"content":"

(Required) Specify which type of information is being requested.

\n","type":"text/plain"},"type":"any","value":"","key":"metadataType"}]}},"response":[{"id":"051f477b-8c8b-4401-b662-c2330843b93f","name":"List of records representing the meta data requested.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/:metadataType","host":["https://api.mediavalet.com"],"path":["assets",":assetId",":metadataType"],"variable":[{"key":"assetId"},{"key":"metadataType"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"Colors\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"proidentc\": {},\n \"voluptate_83\": {}\n },\n \"interpolations\": {\n \"pariatur_16c\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"asset:shareAsLightbox\"\n ]\n },\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"Microsoft\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"veniam8_9\": {},\n \"culpa_3e4\": {}\n },\n \"interpolations\": {\n \"adipisicing_e4\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"None\"\n ]\n }\n]"},{"id":"c4070642-7e2e-4426-9050-c2f1602e62ef","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/:metadataType","host":["https://api.mediavalet.com"],"path":["assets",":assetId",":metadataType"],"variable":[{"key":"assetId"},{"key":"metadataType"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a4cbe5e4-e2d8-40c6-9b87-4cc551a490d0","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/:metadataType","host":["https://api.mediavalet.com"],"path":["assets",":assetId",":metadataType"],"variable":[{"key":"assetId"},{"key":"metadataType"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a5c812db-e5e2-46b2-b9f3-71c1e95203f1","name":"The asset was not found, or the Metadata is not supported.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/:metadataType","host":["https://api.mediavalet.com"],"path":["assets",":assetId",":metadataType"],"variable":[{"key":"assetId"},{"key":"metadataType"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d523313c-afca-41db-bebe-9735d7199167","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/:metadataType","host":["https://api.mediavalet.com"],"path":["assets",":assetId",":metadataType"],"variable":[{"key":"assetId"},{"key":"metadataType"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d175a091-7e6f-4b22-a283-a095c79a1c4c"},{"name":"Retrieve Asset Video Insights","id":"468ab9db-017a-40f0-9234-c2e4040ec0b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/videoInsights","description":"

Retrieve video insights for an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","videoInsights"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"81b236a7-0fea-45bf-af0b-4b57e094080f","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"c2ec331d-8b17-4c64-b7e8-c200cdec54c2","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoInsights","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoInsights"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"apiVersion\": \"1.2\",\n \"buildVersion\": \"2026.1.30.2\",\n \"warnings\": [],\n \"errors\": [],\n \"payload\": {\n \"id\": \"asset-guid\",\n \"durationInSeconds\": 3649,\n \"language\": \"en-US\",\n \"processedAt\": \"2026-01-31T16:04:29Z\",\n \"status\": \"Completed\",\n \n \"transcript\": {\n \"fullText\": \"Complete transcript as continuous text...\",\n \"segments\": [\n {\n \"id\": 1,\n \"startSeconds\": 0.0,\n \"endSeconds\": 5.2,\n \"text\": \"Welcome to our product demo.\",\n \"confidence\": 0.98,\n \"speakerId\": 1\n }\n ]\n },\n \n \"summary\": {\n \"topics\": [...],\n \"keywords\": [...],\n \"overallSentiment\": {...}\n },\n \n \"entities\": {\n \"people\": [...],\n \"namedPeople\": [...],\n \"brands\": [...],\n \"locations\": [...]\n },\n \n \"visualContent\": {\n \"labels\": [...],\n \"ocr\": [...],\n \"scenes\": [...]\n },\n \n \"audioContent\": {\n \"speakers\": [...],\n \"audioEffects\": [...]\n },\n \n \"emotionalContent\": {\n \"sentiments\": [...],\n \"emotions\": [...]\n },\n \n \"metadata\": {\n \"videoIndexerId\": \"ffqunghv2e\",\n \"indexingPreset\": \"Default\",\n \"sourceLanguage\": \"en-US\",\n \"isAdult\": false,\n \"thumbnailId\": \"d24e9b86-d166-4933-ad2d-3b5e675e9149\"\n },\n \n \"_links\": {\n \"self\": \"assets/:assetId/videoInsights\",\n \"parent\": \"assets/:assetId\",\n \"thumbnail\": \"assets/:assetId/thumbnail\",\n \"transcript\": \"assets/:assetId/videoTranscript\",\n \"rawInsights\": \"assets/:assetId/videoInsights?format=raw\"\n }\n },\n \"meta\": {\n \"metaInformation\": {\n \"ElapsedTimeInMS\": 1250\n },\n \"createdAt\": \"2026-02-06T16:58:09.8156697Z\"\n }\n}"},{"id":"f0117297-40a8-453e-bd3d-3a0cfc22ef4f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoInsights","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoInsights"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5ae94b81-a416-47df-bc1b-0901552f36d9","name":"An asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoInsights","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoInsights"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"bd330b96-ad2d-4552-b856-138607c8dcdb","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoInsights","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoInsights"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8c8a58a5-fc9d-431c-9dec-598434603167","name":"An asset video insights were not found","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoInsights","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoInsights"],"variable":[{"key":"assetId","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"468ab9db-017a-40f0-9234-c2e4040ec0b8"},{"name":"Retrieve Asset Video Transcript","id":"76676f02-1b51-4ed2-882f-971a903b9e31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/videoTranscript","description":"

Retrieve video insights for an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","videoTranscript"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"5d795f9a-66c5-49f3-9ace-c0a09ed575b1","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"eabc83d0-0fd6-48b5-86b5-08f5a0902f4d","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoTranscript","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoTranscript"],"variable":[{"key":"assetId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"44467060-2f1b-4e5f-9a22-8bdf0cec4288","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoTranscript","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoTranscript"],"variable":[{"key":"assetId","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cf28babb-6839-4956-9764-5fd12e6b4ad7","name":"An asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoTranscript","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoTranscript"],"variable":[{"key":"assetId","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"91e4e89e-2fee-492a-bd5f-d27560c8274b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoTranscript","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoTranscript"],"variable":[{"key":"assetId","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a88e7d58-4a67-436d-8992-d9643debb2f1","name":"An asset video transcript was not found","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoTranscript","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoTranscript"],"variable":[{"key":"assetId","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"76676f02-1b51-4ed2-882f-971a903b9e31"},{"name":"Retrieve Related Assets","id":"1a24b6cd-2626-4eab-aeac-e2a62e6e1fd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/searchRelatedAssets","description":"

Search for assets and exclude asset that match search criteria to retrieve assets that can be related to current asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","searchRelatedAssets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"11872fbe-bfae-4ec0-8b65-a0ec7930ea9b","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"7bb1be5f-4d97-4549-b4e9-f1c7ba889c67","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/searchRelatedAssets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","searchRelatedAssets"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"anim_de\": \"\",\n \"aute_b36\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"veniam_c_9\": \"\",\n \"officiaca2\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex_63c\": {},\n \"minim693\": {},\n \"consectetur2b\": {}\n },\n \"interpolations\": {\n \"velit0d\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ullamco__5\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"do_4_\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex7_\": {}\n },\n \"interpolations\": {\n \"dolore_980\": {},\n \"enim_43\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:assignCategory\"\n ]\n }\n ],\n \"staleAssets\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_1_8\": {}\n },\n \"interpolations\": {\n \"voluptate95\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"adf202cd-a5c1-4bec-932b-64a9c2c71010","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/searchRelatedAssets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","searchRelatedAssets"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d0b80235-3bb4-458a-ae38-cb7aa369c589","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/searchRelatedAssets","host":["https://api.mediavalet.com"],"path":["assets",":assetId","searchRelatedAssets"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1a24b6cd-2626-4eab-aeac-e2a62e6e1fd4"},{"name":"Retrieve Related Assets","id":"a2742b60-29f2-424d-a7b0-ff26334a5547","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/assets/:id/relatedasset/:token","description":"

Retrieve related assets for an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","assets",":id","relatedasset",":token"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"c1f6c11e-0dc2-4752-99fd-c66a48bc4d32","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"id"},{"id":"09fa638a-28b1-4b8e-87ad-8e48640aaab0","description":{"content":"

(Required) The url token.

\n","type":"text/plain"},"type":"any","value":"","key":"token"}]}},"response":[{"id":"7d93fc6f-1602-4ae7-a41e-fc74b2036452","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/assets/:id/relatedasset/:token","host":["https://api.mediavalet.com"],"path":["public","assets",":id","relatedasset",":token"],"variable":[{"key":"id"},{"key":"token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"composite\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"non__f9\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"dolore_38\": \"\",\n \"incididuntf\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"deserunt0\": {},\n \"do99\": {},\n \"Lorem_76\": {}\n },\n \"interpolations\": {\n \"consectetur_9cb\": {},\n \"ex_a\": {}\n },\n \"permissions\": [\n \"asset:createImageCrop\",\n \"lightbox:share\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"reprehenderitf_4\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"commodo6\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"Excepteur_2\": {},\n \"Ut_d\": {},\n \"officia_fd\": {},\n \"velit_5a\": {}\n },\n \"interpolations\": {\n \"sunt3_4\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLink\"\n ]\n }\n ],\n \"derived\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet__3\": \"\",\n \"labore2f\": \"\",\n \"do7e9\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"ut__\": \"\",\n \"dolore_b2\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod_3\": {}\n },\n \"interpolations\": {\n \"Ut_8c\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"irure2\": \"\",\n \"in7\": \"\",\n \"in_96c\": \"\",\n \"dolor77\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"labore_3\": \"\",\n \"eu_842\": \"\",\n \"utb_e\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in30d\": {},\n \"sit_6\": {},\n \"esse7ed\": {}\n },\n \"interpolations\": {\n \"nisif\": {},\n \"Loremc3\": {},\n \"minim_9\": {}\n },\n \"permissions\": [\n \"asset:shareAsCdnLink\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n ]\n}"},{"id":"f5048f98-cfaf-4661-900f-4d8327831b2e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/assets/:id/relatedasset/:token","host":["https://api.mediavalet.com"],"path":["public","assets",":id","relatedasset",":token"],"variable":[{"key":"id"},{"key":"token"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a2742b60-29f2-424d-a7b0-ff26334a5547"},{"name":"Retrieve Related Asset Gallery Url","id":"49f9b8fd-22fd-41d9-a766-7528591d4369","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/relatedAssetsGalleryUrl","description":"

Retrieve the url for use with related assets gallery application.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","relatedAssetsGalleryUrl"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"312d607c-56c4-462d-9534-cfa779c312e6","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"7dc097a9-3bd2-4fc1-abdb-aaf85dec43e2","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedAssetsGalleryUrl","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedAssetsGalleryUrl"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"WebGalleryUrl\": \"\"\n}"},{"id":"a748a253-b057-4da3-80e0-5e5d0ae7fefc","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedAssetsGalleryUrl","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedAssetsGalleryUrl"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b3d54f87-e04d-4f0f-a224-1ded52e9d886","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedAssetsGalleryUrl","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedAssetsGalleryUrl"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"49f9b8fd-22fd-41d9-a766-7528591d4369"},{"name":"Retrieve Video Intelligence Status","id":"c692c63c-6261-4412-9a93-aa289fac9df3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/status","description":"

Retrieve video intelligence analysis status for an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","videoIntelligence","status"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"b39ee547-e164-454e-9ad1-21109b56f152","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"160b589f-0856-4580-9c6a-b559f887cfa8","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/status","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","status"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"Status\": \"\",\n \"VideoIndexerId\": \"\",\n \"RequestSubmittedOn\": \"\",\n \"StatusLastCheckedOn\": \"\",\n \"AnalysisCompletedOn\": \"\"\n}"},{"id":"7ae51baa-2dcd-4df8-828b-3fe1991e2ed8","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/status","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","status"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"79c9fff6-6e59-4bc3-a35a-d4d6795f1a49","name":"An asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/status","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","status"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b7e91b42-7e60-47f9-b163-074ab31284ea","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/status","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","status"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c692c63c-6261-4412-9a93-aa289fac9df3"},{"name":"Retrieve Video Intelligence Result","id":"57972198-df6a-4cb5-9618-0fbfdc229aa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insights","description":"

Retrieves video intelligence insights for an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","videoIntelligence","insights"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"4ff462f2-a9a2-4006-8ca8-ae25a112b1c6","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"c590600a-354e-46a4-91e4-e0f5259ea9d5","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insights","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","insights"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"suggestedMinimumConfidenceRate\": \"\",\n \"insights\": {\n \"keywords\": [\n {\n \"confidence\": \"\",\n \"text\": \"\"\n },\n {\n \"confidence\": \"\",\n \"text\": \"\"\n }\n ],\n \"labels\": [\n {\n \"confidence\": \"\",\n \"text\": \"\"\n },\n {\n \"confidence\": \"\",\n \"text\": \"\"\n }\n ],\n \"topics\": [\n {\n \"confidence\": \"\",\n \"text\": \"\"\n },\n {\n \"confidence\": \"\",\n \"text\": \"\"\n }\n ],\n \"faces\": [\n {\n \"text\": \"\"\n },\n {\n \"text\": \"\"\n }\n ]\n }\n}"},{"id":"2aa3f7cb-91f4-4faf-a1b6-a0f67eb1d630","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insights","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","insights"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ba1a7b6e-3360-4fb0-baaa-63eb46c2c39b","name":"The video intelligence was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insights","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","insights"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9d008516-04e1-4815-abfb-d54d5199dc1f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insights","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","insights"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"57972198-df6a-4cb5-9618-0fbfdc229aa5"},{"name":"Retrieve Assets With Search Criteria","id":"d4988c6d-dde4-40e0-94ca-46e886234d97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets?includeSoftDeleted=false","description":"

Search for assets within a library that match optional search criteria.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[]}},"response":[{"id":"f4c89a85-1365-4749-a7b3-aa314c8a4eb8","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"anim_de\": \"\",\n \"aute_b36\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"veniam_c_9\": \"\",\n \"officiaca2\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex_63c\": {},\n \"minim693\": {},\n \"consectetur2b\": {}\n },\n \"interpolations\": {\n \"velit0d\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ullamco__5\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"do_4_\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex7_\": {}\n },\n \"interpolations\": {\n \"dolore_980\": {},\n \"enim_43\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:assignCategory\"\n ]\n }\n ],\n \"staleAssets\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_1_8\": {}\n },\n \"interpolations\": {\n \"voluptate95\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"95dd3e69-f2b8-49ea-9778-14666613850e","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c91ada5f-685c-449c-9d3d-d13d64c3916f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b17377eb-4950-436b-848e-73cba3f9c65d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d4988c6d-dde4-40e0-94ca-46e886234d97"},{"name":"Create Asset","id":"fa10fa78-f9d4-4c7d-a27f-05c1ee32c1ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets","description":"

Creates an asset and returns newly created asset information.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"6c7f56a9-36b2-49d2-9a7d-f7260d1c6286","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"uploadUrl\": \"\",\n \"uploadFileName\": \"\",\n \"mediaFileId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ut4\": {},\n \"sed_54\": {}\n },\n \"interpolations\": {\n \"nulla_9\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"c99775a0-4446-4113-96ae-6cd3ee4939fc","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e7c667e2-d285-49cf-8e93-7148ee9f52b1","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fa10fa78-f9d4-4c7d-a27f-05c1ee32c1ae"},{"name":"Retrieve Asset","id":"f9333041-3933-461e-b784-065bc7d69ef6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId?includeSoftDeleted=false","description":"

Retrieve an asset based on the asset id parameter.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"9b30573b-827f-4d36-a09b-d1f8dd4a6362","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"6ca706e1-fc4e-4586-9410-559d9a37ec25","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet_a0e\": \"\",\n \"culpa_16\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"Ut_86\": \"\",\n \"consectetur7c\": \"\",\n \"voluptate_94\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud389\": {},\n \"non186\": {},\n \"amet_668\": {}\n },\n \"interpolations\": {\n \"incididunt4d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"f1449cff-b36f-4595-b071-f897db4d79a7","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"15de2802-d5da-4baf-b724-957b7cf4c401","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0036fbfa-af28-4540-bc3b-510e4c772689","name":"An asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2939eff6-0fa8-4658-8b90-19c854bca7bd","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f9333041-3933-461e-b784-065bc7d69ef6"},{"name":"Update Upload Process To Complete","id":"65ea5389-7207-4f5b-b0b9-8b7d9fa0c274","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId","description":"

Completes upload process for asset and updates description for now.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"62a65ac7-4d3a-4530-90b7-6cd5d380fad9","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"54cbf4e8-593e-4878-9354-36ac2f82123a","name":"Request was accepted.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"06ea8990-af25-4e33-b89e-f6a175a0b5e9","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1d38c591-d45a-4666-9cd6-a2489fb0fdfb","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"65ea5389-7207-4f5b-b0b9-8b7d9fa0c274"},{"name":"Remove Asset","id":"72788a43-bb93-4ebb-97ee-645e7d780995","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/assets/:assetId?isHardDelete=false","description":"

Deletes an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

The boolean to flag hard deletion of asset.

\n","type":"text/plain"},"key":"isHardDelete","value":"false"}],"variable":[{"id":"a6da1589-705f-480c-85aa-dc8612afc9b0","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"7f9341e4-8f93-4c11-aefb-0bbb656df245","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId?isHardDelete=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"query":[{"key":"isHardDelete","value":"false","description":"The boolean to flag hard deletion of asset."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"52c5dc05-4beb-4411-9889-0292a1403d2d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId?isHardDelete=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"query":[{"key":"isHardDelete","value":"false","description":"The boolean to flag hard deletion of asset."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3d27b0e0-c4da-4de3-a40b-daf3a723609d","name":"An asset was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId?isHardDelete=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"query":[{"key":"isHardDelete","value":"false","description":"The boolean to flag hard deletion of asset."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8446c10c-86f7-453f-a7c3-6306d49477fe","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId?isHardDelete=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"query":[{"key":"isHardDelete","value":"false","description":"The boolean to flag hard deletion of asset."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"72788a43-bb93-4ebb-97ee-645e7d780995"},{"name":"Update Asset With Patch Operations","id":"a7020a49-ac4d-4374-aa83-7513ee16b08b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId","description":"

Updates an asset with a list of patch operations.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"54137507-9707-440c-9216-c413daceb165","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"dd4cff60-946e-4ac8-865f-fe2909db0a1d","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet_a0e\": \"\",\n \"culpa_16\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"Ut_86\": \"\",\n \"consectetur7c\": \"\",\n \"voluptate_94\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud389\": {},\n \"non186\": {},\n \"amet_668\": {}\n },\n \"interpolations\": {\n \"incididunt4d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"e9b743ad-b748-434c-a40b-c658d863cffe","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c13889aa-5c55-4d70-95e9-befe157a5faf","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5a3f7733-98c5-40b6-9c17-0fb0ff6bbdae","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a7020a49-ac4d-4374-aa83-7513ee16b08b"},{"name":"Update Asset Filename","id":"3d622482-1f7d-4a0b-9424-c960903f1c09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/filename\",\r\n \"value\": \"\",\r\n \"from\": \"\"\r\n }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId","description":"

Update an asset's filename using patch operation.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"2535f5d4-c3a2-4dac-8fcf-72b05b7bc017","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"81d3e486-2846-49d1-b34a-04656cfd42c4","name":"Request was successful","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/filename\",\r\n \"value\": \"new-filename\",\r\n \"from\": \"\"\r\n }\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId","value":"","description":"(Required) The asset id."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n \"id\": \"\",\r\n \"title\": \"\",\r\n \"media\": {\r\n \"type\": \"\",\r\n \"small\": \"\",\r\n \"thumb\": \"\",\r\n \"large\": \"\",\r\n \"original\": \"\",\r\n \"medium\": \"\",\r\n \"download\": \"\",\r\n \"downloadRequest\": \"\",\r\n \"stream\": \"\",\r\n \"streamLoDef\": \"\",\r\n \"originalDimensions\": \"\",\r\n \"sasExpiry\": \"\",\r\n \"sasRenewal\": \"\",\r\n \"renditionItemCount\": \"\",\r\n \"autodeskUrn\": \"\",\r\n \"watermarked\": \"\",\r\n \"assetId\": \"\",\r\n \"streamingManifest\": \"\",\r\n \"fullStreamAvailable\": \"\"\r\n },\r\n \"file\": {\r\n \"id\": \"\",\r\n \"title\": \"\",\r\n \"fileName\": \"\",\r\n \"md5\": \"\",\r\n \"fileType\": \"\",\r\n \"sizeInBytes\": \"\",\r\n \"description\": \"\",\r\n \"keywords\": \"\",\r\n \"uploadedAt\": \"\",\r\n \"modifiedAt\": \"\",\r\n \"approvedAt\": \"\",\r\n \"disapprovedAt\": \"\",\r\n \"expiresAt\": \"\",\r\n \"imageHeight\": \"\",\r\n \"imageWidth\": \"\",\r\n \"frameRate\": \"\",\r\n \"length\": \"\",\r\n \"bitRate\": \"\",\r\n \"mimeType\": \"\",\r\n \"resolution\": \"\",\r\n \"colorMode\": \"\",\r\n \"aspectRatio\": \"\",\r\n \"orientation\": \"\",\r\n \"sharedRenditionWidth\": \"\",\r\n \"sharedRenditionHeight\": \"\",\r\n \"sharedRenditionFileExtension\": \"\",\r\n \"sharedRenditionFileSizeInBytes\": \"\"\r\n },\r\n \"description\": \"\",\r\n \"altText\": \"\",\r\n \"containerName\": \"\",\r\n \"status\": \"\",\r\n \"rating\": {\r\n \"average\": \"\",\r\n \"user\": \"\"\r\n },\r\n \"attributes\": {\r\n \"amet_a0e\": \"\",\r\n \"culpa_16\": \"\"\r\n },\r\n \"record\": {\r\n \"createdAt\": \"\",\r\n \"createdBy\": {\r\n \"id\": \"\",\r\n \"username\": \"\",\r\n \"firstName\": \"\",\r\n \"lastName\": \"\"\r\n },\r\n \"modifiedAt\": \"\",\r\n \"modifiedBy\": {\r\n \"id\": \"\",\r\n \"username\": \"\",\r\n \"firstName\": \"\",\r\n \"lastName\": \"\"\r\n },\r\n \"softDeletedAt\": \"\",\r\n \"softDeletedBy\": {\r\n \"id\": \"\",\r\n \"username\": \"\",\r\n \"firstName\": \"\",\r\n \"lastName\": \"\"\r\n },\r\n \"version\": {\r\n \"version\": \"\",\r\n \"current\": \"\",\r\n \"head\": \"\",\r\n \"parentid\": \"\",\r\n \"isversionable\": \"\",\r\n \"islatestversion\": \"\",\r\n \"ismajorversion\": \"\"\r\n }\r\n },\r\n \"categories\": [\r\n \"\",\r\n \"\"\r\n ],\r\n \"keywords\": [\r\n \"\",\r\n \"\"\r\n ],\r\n \"relatedassets\": [\r\n \"\",\r\n \"\"\r\n ],\r\n \"assetCheckOutComment\": \"\",\r\n \"assetCheckInComment\": \"\",\r\n \"checkedOutBy\": \"\",\r\n \"renderAsPdf\": \"\",\r\n \"wopiEnabled\": \"\",\r\n \"userViewCounts\": {\r\n \"Ut_86\": \"\",\r\n \"consectetur7c\": \"\",\r\n \"voluptate_94\": \"\"\r\n },\r\n \"createdAt\": \"\",\r\n \"hasVideoIntelligenceContent\": \"\",\r\n \"followed\": \"\",\r\n \"_links\": {\r\n \"self\": \"\",\r\n \"functions\": [\r\n \"\",\r\n \"\"\r\n ]\r\n },\r\n \"translationKeys\": {\r\n \"nostrud389\": {},\r\n \"non186\": {},\r\n \"amet_668\": {}\r\n },\r\n \"interpolations\": {\r\n \"incididunt4d\": {},\r\n \"in2\": {}\r\n },\r\n \"permissions\": [\r\n \"lightbox:assignAsset\",\r\n \"asset:shareAsCdnLink\"\r\n ]\r\n}"},{"id":"77d4f574-366e-4d58-8332-0e25867ae622","name":"Filename exists with FileNameVersioning feature flag on","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/filename\",\r\n \"value\": \"new-filename\",\r\n \"from\": \"\"\r\n }\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId","value":"","description":"(Required) The asset id."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n \"Message\": \"An error has occurred.\",\r\n \"ExceptionMessage\": \"An asset with new-filename filename already exists in this library. Please choose a different, unique filename.\",\r\n \"ExceptionType\": \"\",\r\n \"StackTrace\": \"\"\r\n}"},{"id":"dc7db6de-f74b-46cc-9e44-717dd51aa1ba","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/filename\",\r\n \"value\": \"new-filename\",\r\n \"from\": \"\"\r\n }\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId"],"variable":[{"key":"assetId","value":"","description":"(Required) The asset id."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3d622482-1f7d-4a0b-9424-c960903f1c09"},{"name":"Retrieve Video Indexer Subscription","id":"dff20b7a-fb61-4117-984b-c27261a5a08d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/token?allowEdit=false","description":"

Retrieves video indexer subscription metadata for an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","videoIntelligence","token"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

The boolean indicating whether edit is allowed or not.

\n","type":"text/plain"},"key":"allowEdit","value":"false"}],"variable":[{"id":"b8150ef5-1ab5-47e2-99c2-14db803f939d","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"cd955b48-8e12-4402-a801-ba28f25fb7d3","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/token?allowEdit=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","token"],"query":[{"key":"allowEdit","value":"false","description":"The boolean indicating whether edit is allowed or not."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"videoIndexerAccountId\": \"\",\n \"videoIndexerId\": \"\",\n \"location\": \"\",\n \"accessToken\": \"\"\n}"},{"id":"a6189e9b-1801-4a4d-9c90-1235f7bb77a2","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/token?allowEdit=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","token"],"query":[{"key":"allowEdit","value":"false","description":"The boolean indicating whether edit is allowed or not."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fa01ce8a-9039-47d0-81a6-74aeb06f8eae","name":"The video intelligence was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/token?allowEdit=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","token"],"query":[{"key":"allowEdit","value":"false","description":"The boolean indicating whether edit is allowed or not."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4ea3052d-2a4b-4a00-a0a4-d50daa8152cf","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/token?allowEdit=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","token"],"query":[{"key":"allowEdit","value":"false","description":"The boolean indicating whether edit is allowed or not."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dff20b7a-fb61-4117-984b-c27261a5a08d"},{"name":"Retrieve Asset History","id":"1f594ca1-22d1-49f0-adf9-995b6bc0b02f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/history?includeSoftDeleted=false","description":"

Retrieves asset history.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","history"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"547d4357-370d-46da-97a0-e7aa944150e8","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"e93836d6-4453-4cb4-a811-c3aca2916698","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/history?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","history"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"assetHistoryDetail\": [\n {\n \"id\": \"\",\n \"date\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"type\": \"\",\n \"assetId\": \"\",\n \"comment\": \"\",\n \"cropDescription\": \"\",\n \"sharedTo\": [\n \"\",\n \"\"\n ],\n \"brandedPortalName\": \"\",\n \"directLinkName\": \"\",\n \"directLinkDescription\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ut_a\": {},\n \"sit5b2\": {}\n },\n \"interpolations\": {\n \"culpa58\": {},\n \"laborum8\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"id\": \"\",\n \"date\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"type\": \"\",\n \"assetId\": \"\",\n \"comment\": \"\",\n \"cropDescription\": \"\",\n \"sharedTo\": [\n \"\",\n \"\"\n ],\n \"brandedPortalName\": \"\",\n \"directLinkName\": \"\",\n \"directLinkDescription\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"occaecat83a\": {},\n \"mollit_c95\": {}\n },\n \"interpolations\": {\n \"consectetur_e16\": {},\n \"esse_401\": {},\n \"in_b\": {}\n },\n \"permissions\": [\n \"brandedPortal:view\",\n \"lightbox:share\"\n ]\n }\n ],\n \"summary\": {\n \"approvedDisapprovedBy\": \"\",\n \"uploadedBy\": \"\",\n \"uploadedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"minim19\": {},\n \"pariatur5e2\": {}\n },\n \"interpolations\": {\n \"amet2b5\": {},\n \"ad_8\": {},\n \"Lorem_ca\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"lightbox:assignAsset\"\n ]\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nisi_02\": {}\n },\n \"interpolations\": {\n \"voluptate48\": {},\n \"cupidatat_eba\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"lightbox:transferOwnership\"\n ]\n },\n {\n \"assetHistoryDetail\": [\n {\n \"id\": \"\",\n \"date\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"type\": \"\",\n \"assetId\": \"\",\n \"comment\": \"\",\n \"cropDescription\": \"\",\n \"sharedTo\": [\n \"\",\n \"\"\n ],\n \"brandedPortalName\": \"\",\n \"directLinkName\": \"\",\n \"directLinkDescription\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exercitation_2\": {},\n \"ut_e3\": {},\n \"aliqua_d0\": {},\n \"irure4f\": {}\n },\n \"interpolations\": {\n \"do_d\": {},\n \"sunt1\": {},\n \"tempor6\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"lightbox:editDetails\"\n ]\n },\n {\n \"id\": \"\",\n \"date\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"type\": \"\",\n \"assetId\": \"\",\n \"comment\": \"\",\n \"cropDescription\": \"\",\n \"sharedTo\": [\n \"\",\n \"\"\n ],\n \"brandedPortalName\": \"\",\n \"directLinkName\": \"\",\n \"directLinkDescription\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ut__\": {}\n },\n \"interpolations\": {\n \"officiaa6\": {},\n \"consectetur_75\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"lightbox:assignAsset\"\n ]\n }\n ],\n \"summary\": {\n \"approvedDisapprovedBy\": \"\",\n \"uploadedBy\": \"\",\n \"uploadedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"Duis0f\": {},\n \"qui85_\": {}\n },\n \"interpolations\": {\n \"sed5df\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsZippedFile\"\n ]\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"labore_f0\": {},\n \"nostrud49\": {},\n \"sunt_53\": {},\n \"laborum__4e\": {}\n },\n \"interpolations\": {\n \"dolor6\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:createImageCrop\"\n ]\n }\n]"},{"id":"2c128f66-89db-4d4c-8144-a92530509326","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/history?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","history"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d8b39ad0-e5f5-483c-9cc7-df6d0bfc58b0","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/history?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","history"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9129db75-1f47-4975-8d0f-1a70423dd261","name":"An asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/history?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","history"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8d3f7b3f-e847-4014-95d1-26b223682b3c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/history?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","history"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1f594ca1-22d1-49f0-adf9-995b6bc0b02f"},{"name":"Retrieve Asset Autotags","id":"79a6bb29-1a26-4a3f-b9dc-dc8eb9106e03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/autotags?includeSoftDeleted=false","description":"

Retrieves autotags associated with specified asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","autotags"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"3f387b2e-f57a-4f26-b218-902aa9828a44","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"84056f19-9a04-4353-8ab4-9a33effceb18","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/autotags?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","autotags"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"tags\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"confidence\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"confidence\": \"\"\n }\n ]\n}"},{"id":"9fad3ebd-0fae-4b51-8fe5-6efe5574a99c","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/autotags?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","autotags"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"50057905-d9ea-4757-acb2-6944c5cd8ce0","name":"An asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/autotags?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","autotags"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"79a6bb29-1a26-4a3f-b9dc-dc8eb9106e03"},{"name":"Retrieve Asset Comments","id":"27a4572a-d38b-4fe9-92a1-a415ef5c9db3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/comments?includeSoftDeleted=false","description":"

Retrieves asset comments.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","comments"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"e31e1697-f19c-4dc0-b3b8-47c5aa044beb","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"4fd03253-520d-4295-b0df-6c96220dadd6","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/comments?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","comments"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"assetId\": \"\",\n \"comment\": \"\",\n \"versionNumber\": \"\",\n \"addedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"addedAt\": \"\",\n \"commentType\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sunte\": {},\n \"laboruma1\": {}\n },\n \"interpolations\": {\n \"eu1\": {},\n \"culpa__e\": {}\n },\n \"permissions\": [\n \"brandedPortal:view\",\n \"brandedPortal:view\"\n ]\n },\n {\n \"id\": \"\",\n \"assetId\": \"\",\n \"comment\": \"\",\n \"versionNumber\": \"\",\n \"addedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"addedAt\": \"\",\n \"commentType\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"Duis_c\": {},\n \"incididunt_d8\": {},\n \"magna_9\": {}\n },\n \"interpolations\": {\n \"doa6\": {},\n \"ut_5\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n }\n]"},{"id":"02a51356-acfc-47bf-bfd7-1990ef6ba564","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/comments?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","comments"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f1de5f1b-50a0-4ee1-89f0-c1eca8347a3a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/comments?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","comments"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ee6a407a-c36b-4808-ad47-0b667f9a3b2e","name":"An asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/comments?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","comments"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f6c9e553-7827-417d-83af-7e5578a1bd3a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/comments?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","comments"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"27a4572a-d38b-4fe9-92a1-a415ef5c9db3"},{"name":"Create Asset Comments","id":"1828d8d1-f498-4e2c-bdf2-ff10f71569ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/comments","description":"

Adds comments to the asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","comments"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"0d1661b7-2084-42f2-a174-93def3859cbb","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"b1832112-4447-4a73-aa45-7d58bf3c08e1","name":"The comment was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/comments","host":["https://api.mediavalet.com"],"path":["assets",":assetId","comments"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"67eeb69d-45eb-4cf7-92ba-d5c1bffc2377","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/comments","host":["https://api.mediavalet.com"],"path":["assets",":assetId","comments"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f5a0bcef-27eb-467f-a3ea-a2a5fa62b81f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/comments","host":["https://api.mediavalet.com"],"path":["assets",":assetId","comments"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f48067d7-e54f-4a86-9622-8c32fc2d304d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/comments","host":["https://api.mediavalet.com"],"path":["assets",":assetId","comments"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1828d8d1-f498-4e2c-bdf2-ff10f71569ce"},{"name":"Retrieve Asset Keywords","id":"f0df7d72-4db9-4bcf-bccc-b8f49d148187","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/keywords?includeSoftDeleted=false","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","keywords"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"f54d1ba7-9dda-4082-8bf3-7b7a72825eaa","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"1fceeb09-daa1-4e5d-b30b-06c830c3d3f7","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"keywordName\": \"\",\n \"isSearchable\": \"\",\n \"isApproved\": \"\",\n \"groupName\": \"\",\n \"groupPath\": \"\",\n \"approvedAt\": \"\",\n \"approvedBy\": \"\",\n \"requestedAt\": \"\",\n \"approvalStatus\": \"\",\n \"requestedBy\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sit0\": {},\n \"consecteturcc\": {},\n \"officia_3f\": {},\n \"irure_e\": {}\n },\n \"interpolations\": {\n \"dolore99c\": {},\n \"voluptate__b\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"asset:shareAsLightbox\"\n ]\n },\n {\n \"id\": \"\",\n \"keywordName\": \"\",\n \"isSearchable\": \"\",\n \"isApproved\": \"\",\n \"groupName\": \"\",\n \"groupPath\": \"\",\n \"approvedAt\": \"\",\n \"approvedBy\": \"\",\n \"requestedAt\": \"\",\n \"approvalStatus\": \"\",\n \"requestedBy\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sit_c\": {}\n },\n \"interpolations\": {\n \"elitfb5\": {},\n \"temporb4\": {},\n \"suntb\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"e0904e39-2461-4c4b-be35-76266abf9000","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"13c6554f-0668-46ab-8b95-5097117f6f43","name":"A keyword was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f0df7d72-4db9-4bcf-bccc-b8f49d148187"},{"name":"Create Association of Assets And Keywords","id":"b45fb95f-c366-4cc1-aeb2-3d1ba8f21f1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/keywords","description":"

Associates list of keywords to specified asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","keywords"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"07551762-da0f-48cc-ad22-c83e32b57fbb","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"1780a8f6-e622-422e-bd30-b56d12a17078","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"\",\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sedc6f\": {},\n \"mollit_b00\": {},\n \"enime6\": {},\n \"nonda\": {}\n },\n \"interpolations\": {\n \"in04\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"df5b614e-f165-40ad-9302-042e73e99f0b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f04dcc08-48cc-48c6-9113-4c8e658fe041","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b45fb95f-c366-4cc1-aeb2-3d1ba8f21f1d"},{"name":"Retrieve Media File Versions","id":"b2c669f0-a260-4596-8488-8a439655eea3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/versions?includeSoftDeleted=false","description":"

Gets an asset's media file versions.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","versions"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"4872bc7f-02ab-4005-b069-223dba3f1b6a","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"5ea5c457-932f-4759-ad0a-f39ce03e1f34","name":"A response message containing a payload of the asset's media file versions.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/versions?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","versions"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"commodo4\": \"\",\n \"non_0a\": \"\",\n \"in591\": \"\",\n \"sint_390\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"pariatur_de\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmoddf\": {}\n },\n \"interpolations\": {\n \"officia7\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:shareAsCdnLink\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"dolorb\": \"\",\n \"sit_22\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"sint8d\": \"\",\n \"animd8\": \"\",\n \"nisi_64\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in6a\": {},\n \"irureafe\": {},\n \"tempor75\": {}\n },\n \"interpolations\": {\n \"ut_5\": {},\n \"in_003\": {}\n },\n \"permissions\": [\n \"asset:shareAsCdnLink\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n]"},{"id":"fa58c2d1-2074-4ac8-8bd6-d90dfefda6f7","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/versions?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","versions"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ec8a285e-009b-4b3f-b4e7-593b4ad9600c","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/versions?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","versions"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8de3bd88-186b-492d-a7e6-b9988098950c","name":"An asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/versions?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","versions"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"78d22df5-c906-46dc-b691-7ef899fd2e7c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/versions?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","versions"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b2c669f0-a260-4596-8488-8a439655eea3"},{"name":"Retrieve Asset Attributes","id":"bce649f6-f2f5-4185-87d8-a698c46c6088","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/attributes?includeSoftDeleted=false","description":"

Retrieves attributes associated with an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","attributes"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"09201a15-a627-4ee4-8d79-bab5baf96b4a","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"48846029-3dce-4b9b-b73d-2886ebc066ea","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/attributes?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","attributes"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"attributes\": {\n \"aliqua_75e\": \"\"\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"adde5\": {}\n },\n \"interpolations\": {\n \"qui1\": {},\n \"in_b\": {},\n \"et_68\": {},\n \"pariatur_6a\": {},\n \"exercitation_1\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"3fe69ffa-ff89-4cbe-9566-d96d4aee5f7b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/attributes?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","attributes"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3699fa87-9cfd-4615-a38a-5863512b583c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/attributes?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","attributes"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bce649f6-f2f5-4185-87d8-a698c46c6088"},{"name":"Create Asset Attributes","id":"3f2a01bc-42e9-4184-8628-6ff483a515e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/attributes","description":"

Add attributes to an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","attributes"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"dd51f8e5-ee9f-4828-98c7-1e0eade9387b","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"29273752-999f-47f3-b7ad-fbb3047ad7d3","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/attributes","host":["https://api.mediavalet.com"],"path":["assets",":assetId","attributes"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet_a0e\": \"\",\n \"culpa_16\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"Ut_86\": \"\",\n \"consectetur7c\": \"\",\n \"voluptate_94\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud389\": {},\n \"non186\": {},\n \"amet_668\": {}\n },\n \"interpolations\": {\n \"incididunt4d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"62f909f5-4c4f-4831-917e-7f737a966a01","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/attributes","host":["https://api.mediavalet.com"],"path":["assets",":assetId","attributes"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6ce08a3f-6fbd-4e21-9775-35853ff48ec2","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/attributes","host":["https://api.mediavalet.com"],"path":["assets",":assetId","attributes"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3f2a01bc-42e9-4184-8628-6ff483a515e0"},{"name":"Retrieve Asset Renditions","id":"e441eb3f-2a1c-40f5-8cc0-4fdd75cc919c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/renditions?includeSoftDeleted=false","description":"

Retrieves an asset's renditions.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","renditions"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"0b302dc9-1f47-42dd-8cba-554b0fe655f6","description":{"content":"

(Required) The asset ID.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"46b18b06-e129-4ffc-937a-f451480945d8","name":"A response message containing a payload of AssetRenditionDtos.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/renditions?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","renditions"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"renditionTypeId\": \"\",\n \"height\": \"\",\n \"width\": \"\",\n \"length\": \"\",\n \"mimeType\": \"\",\n \"watermarked\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eu_be7\": {},\n \"quis_be\": {},\n \"laboree\": {},\n \"in4b\": {},\n \"qui88c\": {}\n },\n \"interpolations\": {\n \"velit_69\": {},\n \"occaecat44\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"id\": \"\",\n \"renditionTypeId\": \"\",\n \"height\": \"\",\n \"width\": \"\",\n \"length\": \"\",\n \"mimeType\": \"\",\n \"watermarked\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"labore_b99\": {},\n \"minim24\": {}\n },\n \"interpolations\": {\n \"fugiat9\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"lightbox:share\"\n ]\n }\n]"},{"id":"ecdcd8c0-ba8f-4af1-93d0-8c24d11b69b8","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/renditions?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","renditions"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a2cb8411-cad6-4622-970f-354e183d9c27","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/renditions?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","renditions"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ad689f36-f25e-42b3-a1cf-33360f60ae63","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/renditions?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","renditions"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e441eb3f-2a1c-40f5-8cc0-4fdd75cc919c"},{"name":"Retrieve Asset Renditions By Kind","id":"d373191c-af8f-4d8d-86fa-18bca8074a18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/renditions/:renditionKindId?includeSoftDeleted=false","description":"

Retrieves an asset's renditions.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","renditions",":renditionKindId"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"db827a96-434d-456a-a7da-ba13a53feae6","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"e344165b-0b2b-4b40-aa0d-251cd0b3a43e","description":{"content":"

(Required) The rendition kind id.

\n","type":"text/plain"},"type":"any","value":"","key":"renditionKindId"}]}},"response":[{"id":"c44744f3-c6e0-4d8a-a415-49dfb23b37e6","name":"A response message containing a payload of AssetRenditionDto.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/renditions/:renditionKindId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","renditions",":renditionKindId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"renditionUrl\": \"\",\n \"thumbnailUrl\": \"\",\n \"pages\": {\n \"count\": \"\",\n \"offSet\": \"\",\n \"renditions\": [\n {\n \"sequence\": \"\",\n \"url\": \"\"\n },\n {\n \"sequence\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\"\n}"},{"id":"b0ab9da5-fb1a-47d8-af33-57719b741a5d","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/renditions/:renditionKindId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","renditions",":renditionKindId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"919f86b6-04ed-483d-8d65-a13bae97a801","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/renditions/:renditionKindId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","renditions",":renditionKindId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5c6c3860-dc68-4bdd-9ca0-a3f114feff54","name":"The asset rendition was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/renditions/:renditionKindId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","renditions",":renditionKindId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d1be9574-6c7e-43ad-ba8f-f70d5621235d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/renditions/:renditionKindId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["assets",":assetId","renditions",":renditionKindId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d373191c-af8f-4d8d-86fa-18bca8074a18"},{"name":"Retrieve Asset Categories","id":"b3ef6b27-6475-497f-8c1f-b261bc9d081e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/categories?includeSoftDeleted=false&categoryFeatures=&includePermissions=true","description":"

Returns list of categories an asset belongs to

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","categories"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"},{"key":"categoryFeatures","value":""},{"description":{"content":"

Query param: Return CLP permissions

\n","type":"text/plain"},"key":"includePermissions","value":"true"}],"variable":[{"id":"13134c72-f2ad-4d33-91ed-e242d6bc2bb1","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"4d05c89f-4e9a-41ab-af22-4d688a26253a","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories?includeSoftDeleted=false&categoryFeatures=&includePermissions=true","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."},{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"true","description":"Query param: Return CLP permissions"}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"incididuntf8\": {}\n },\n \"interpolations\": {\n \"est_c17\": {},\n \"sed8\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:downloadFromMvd\"\n ]\n },\n {\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"voluptate__\": {},\n \"dolore6\": {},\n \"sedd7b\": {}\n },\n \"interpolations\": {\n \"cupidatat_f1e\": {},\n \"sit_e\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"de7046d0-b688-4814-bafb-6ebc9f863c1d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories?includeSoftDeleted=false&categoryFeatures=&includePermissions=true","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."},{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"true","description":"Query param: Return CLP permissions"}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"78531979-5f9a-4e99-86c0-191769a3b7dd","name":"An asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories?includeSoftDeleted=false&categoryFeatures=&includePermissions=true","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."},{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"true","description":"Query param: Return CLP permissions"}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a8cc427b-2cbf-4c52-84c2-af87fe2b43c9","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories?includeSoftDeleted=false&categoryFeatures=&includePermissions=true","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."},{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"true","description":"Query param: Return CLP permissions"}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b3ef6b27-6475-497f-8c1f-b261bc9d081e"},{"name":"Update Association of Asset And Categories","id":"3f3d73bd-353f-482a-afd5-3f3047e4cb71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/categories","description":"

Associates specified asset into list of categories, replacing previous list with provided list

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","categories"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f0b796c8-9ee9-4060-811b-a66af6486481","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"737dcbd1-9ebe-4a8a-b663-4887aadc4f98","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"\",\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}"},{"id":"34e51d34-768f-477a-ad00-f58dbf09461a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c82cbbf9-32fb-461b-8235-215f672135af","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3f3d73bd-353f-482a-afd5-3f3047e4cb71"},{"name":"Create Association of Asset And Categories","id":"e07080f1-e9a5-4f1a-8db7-6eb20c65fa32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/categories","description":"

Associates Asset into list of categories

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","categories"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"fc3e4d6b-57ee-489f-9ab5-6ec32d07892b","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"90617ecc-b924-4d96-9fa9-13b537bedec8","name":"Request was accepted with partial success.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"\",\n \"categoryIds\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor8f\": {}\n },\n \"interpolations\": {\n \"ipsum_b4f\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"asset:createImageCrop\"\n ]\n}"},{"id":"1883f4b8-9019-40f1-abbd-ca9bbba82c4a","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"\",\n \"categoryIds\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor8f\": {}\n },\n \"interpolations\": {\n \"ipsum_b4f\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"asset:createImageCrop\"\n ]\n}"},{"id":"7013dbca-e467-4c04-a151-a226e13c7719","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"efd491f4-e46a-4a94-a44b-50c5ae059baa","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e07080f1-e9a5-4f1a-8db7-6eb20c65fa32"},{"name":"Retrieve Assets With Search Criteria","id":"f2786437-9cdf-4191-8c87-e2f15b081691","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"includeSoftDeleted\": \"\",\n \"count\": \"\",\n \"offset\": \"\",\n \"search\": \"\",\n \"sort\": \"\",\n \"filters\": \"\",\n \"containerfilter\": \"\",\n \"searchFields\": \"\",\n \"includeTotalCount\": \"\",\n \"useSemanticSearch\": \"\",\n \"useRrf\": \"\",\n \"semanticSearchSimilarity\": \"\",\n \"fileId\": \"\",\n \"fileUrl\": \"\",\n \"fileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/search","description":"

Search for assets within a library that match optional search criteria. This method allows for longer query strings.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets","search"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"f4f0ad73-fce2-4319-9fd5-cdde3380f2ac","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"includeSoftDeleted\": \"\",\n \"count\": \"\",\n \"offset\": \"\",\n \"search\": \"\",\n \"sort\": \"\",\n \"filters\": \"\",\n \"containerfilter\": \"\",\n \"searchFields\": \"\",\n \"includeTotalCount\": \"\",\n \"useSemanticSearch\": \"\",\n \"useRrf\": \"\",\n \"semanticSearchSimilarity\": \"\",\n \"fileId\": \"\",\n \"fileUrl\": \"\",\n \"fileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"anim_de\": \"\",\n \"aute_b36\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"veniam_c_9\": \"\",\n \"officiaca2\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex_63c\": {},\n \"minim693\": {},\n \"consectetur2b\": {}\n },\n \"interpolations\": {\n \"velit0d\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ullamco__5\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"do_4_\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex7_\": {}\n },\n \"interpolations\": {\n \"dolore_980\": {},\n \"enim_43\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:assignCategory\"\n ]\n }\n ],\n \"staleAssets\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_1_8\": {}\n },\n \"interpolations\": {\n \"voluptate95\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"a640ece0-9430-41a7-858c-99b57c08040f","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"includeSoftDeleted\": \"\",\n \"count\": \"\",\n \"offset\": \"\",\n \"search\": \"\",\n \"sort\": \"\",\n \"filters\": \"\",\n \"containerfilter\": \"\",\n \"searchFields\": \"\",\n \"includeTotalCount\": \"\",\n \"useSemanticSearch\": \"\",\n \"useRrf\": \"\",\n \"semanticSearchSimilarity\": \"\",\n \"fileId\": \"\",\n \"fileUrl\": \"\",\n \"fileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4c660cd6-0643-4e42-a8f7-86cc141b4fe9","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"includeSoftDeleted\": \"\",\n \"count\": \"\",\n \"offset\": \"\",\n \"search\": \"\",\n \"sort\": \"\",\n \"filters\": \"\",\n \"containerfilter\": \"\",\n \"searchFields\": \"\",\n \"includeTotalCount\": \"\",\n \"useSemanticSearch\": \"\",\n \"useRrf\": \"\",\n \"semanticSearchSimilarity\": \"\",\n \"fileId\": \"\",\n \"fileUrl\": \"\",\n \"fileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ef0d832f-1928-4a81-af7a-a155ba7a0e4d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"includeSoftDeleted\": \"\",\n \"count\": \"\",\n \"offset\": \"\",\n \"search\": \"\",\n \"sort\": \"\",\n \"filters\": \"\",\n \"containerfilter\": \"\",\n \"searchFields\": \"\",\n \"includeTotalCount\": \"\",\n \"useSemanticSearch\": \"\",\n \"useRrf\": \"\",\n \"semanticSearchSimilarity\": \"\",\n \"fileId\": \"\",\n \"fileUrl\": \"\",\n \"fileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f2786437-9cdf-4191-8c87-e2f15b081691"},{"name":"Create a Trim of the Video Asset","id":"64b687a3-4ef1-4eb1-963e-f15b723bb7a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"startTime\": \"\",\n \"endTime\": \"\",\n \"fileName\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/clip","description":"

Given a Start and End time, trims the video asset to create a new video clip to download.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","clip"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"30596f2c-160e-4cea-8992-b73d01419bed","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"317b2899-61de-4ddb-914a-8eecb29df6b1","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"startTime\": \"\",\n \"endTime\": \"\",\n \"fileName\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/clip","host":["https://api.mediavalet.com"],"path":["assets",":assetId","clip"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"\",\n \"clipId\": \"\",\n \"clipUrl\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"fugiat99f\": {},\n \"Utcbc\": {},\n \"culpa7_\": {},\n \"occaecat_\": {}\n },\n \"interpolations\": {\n \"Excepteur_09d\": {},\n \"eu_4_b\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:assignCategory\"\n ]\n}"},{"id":"ff1443e9-b8ab-45f5-8cb7-92a23992c346","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"startTime\": \"\",\n \"endTime\": \"\",\n \"fileName\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/clip","host":["https://api.mediavalet.com"],"path":["assets",":assetId","clip"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a10b745a-8ed2-48c6-a246-49160b26c1fa","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"startTime\": \"\",\n \"endTime\": \"\",\n \"fileName\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/clip","host":["https://api.mediavalet.com"],"path":["assets",":assetId","clip"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"64b687a3-4ef1-4eb1-963e-f15b723bb7a2"},{"name":"Validate Asset Deletion Rollback","id":"a6356006-5fae-44c3-a52b-4f2454e85e6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"id\": \"\",\n \"fileName\": \"\"\n },\n {\n \"id\": \"\",\n \"fileName\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/undeleteValidate","description":"

Check whether assets can be undeleted or not.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets","undeleteValidate"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"754f7844-4245-4885-97eb-a932cb80c5b0","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"id\": \"\",\n \"fileName\": \"\"\n },\n {\n \"id\": \"\",\n \"fileName\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/undeleteValidate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"fileName\": \"\",\n \"validationStatus\": \"\",\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"pariaturab6\": {}\n },\n \"interpolations\": {\n \"in_7\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:downloadFromPortal\"\n ]\n },\n {\n \"id\": \"\",\n \"fileName\": \"\",\n \"validationStatus\": \"\",\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor_cb3\": {},\n \"do__15\": {},\n \"tempor_d07\": {}\n },\n \"interpolations\": {\n \"estf6\": {},\n \"Ut1\": {},\n \"suntb1\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"asset:shareAsZippedFile\"\n ]\n }\n]"},{"id":"19739a83-94de-4914-a164-427359e6cadb","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"id\": \"\",\n \"fileName\": \"\"\n },\n {\n \"id\": \"\",\n \"fileName\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/undeleteValidate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1f1c528f-bfef-4fdd-938a-f12754884399","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"id\": \"\",\n \"fileName\": \"\"\n },\n {\n \"id\": \"\",\n \"fileName\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/undeleteValidate"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e8aafa5b-d455-4ddf-ae7d-996c70d4b5fa","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"id\": \"\",\n \"fileName\": \"\"\n },\n {\n \"id\": \"\",\n \"fileName\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/undeleteValidate"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"578f85fa-1d40-4389-a662-1cab848d7c6c","name":"Conflict has occurred. ","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"id\": \"\",\n \"fileName\": \"\"\n },\n {\n \"id\": \"\",\n \"fileName\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/undeleteValidate"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a6356006-5fae-44c3-a52b-4f2454e85e6e"},{"name":"Create Asset Rating","id":"6aa19cb1-031d-45e5-bbcd-59722d82ef4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Rating\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/rating","description":"

Sets rating for asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","rating"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"fef2884f-6740-46d9-9404-da7f8246ea9c","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"adeb0266-b306-44e8-b528-e79bae10f321","name":"OK","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Rating\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/rating","host":["https://api.mediavalet.com"],"path":["assets",":assetId","rating"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"a1279d13-c099-4567-a24c-53d66b3129c4","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Rating\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/rating","host":["https://api.mediavalet.com"],"path":["assets",":assetId","rating"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet_a0e\": \"\",\n \"culpa_16\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"Ut_86\": \"\",\n \"consectetur7c\": \"\",\n \"voluptate_94\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud389\": {},\n \"non186\": {},\n \"amet_668\": {}\n },\n \"interpolations\": {\n \"incididunt4d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"68204efc-aa39-4801-b4af-38e0c85c4ad7","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Rating\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/rating","host":["https://api.mediavalet.com"],"path":["assets",":assetId","rating"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f2840bed-6c08-475b-aad7-210106bbb0c3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Rating\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/rating","host":["https://api.mediavalet.com"],"path":["assets",":assetId","rating"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6aa19cb1-031d-45e5-bbcd-59722d82ef4e"},{"name":"Remove Asset Rating","id":"8ec4e799-a6f1-4fa7-a350-23c515522323","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/rating","description":"

Removes rating from an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","rating"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"1f074754-6e7f-42d7-8c07-6b5c864db1f0","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"7cfa47bd-c7bd-48bf-bca0-1a45b9e7d64f","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/rating","host":["https://api.mediavalet.com"],"path":["assets",":assetId","rating"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"6dab6b56-eaab-48c4-b298-1cb5de37d7b8","name":"Request was accepted.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/rating","host":["https://api.mediavalet.com"],"path":["assets",":assetId","rating"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet_a0e\": \"\",\n \"culpa_16\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"Ut_86\": \"\",\n \"consectetur7c\": \"\",\n \"voluptate_94\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud389\": {},\n \"non186\": {},\n \"amet_668\": {}\n },\n \"interpolations\": {\n \"incididunt4d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"9d9968ba-b823-444b-b999-8cff26d74e90","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/rating","host":["https://api.mediavalet.com"],"path":["assets",":assetId","rating"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1673e049-89f3-4616-bcb6-a47d65d1ac17","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/rating","host":["https://api.mediavalet.com"],"path":["assets",":assetId","rating"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8ec4e799-a6f1-4fa7-a350-23c515522323"},{"name":"Create View Count Increment For Asset","id":"c193f021-5fe9-4429-a32b-bac7a82956cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/assets/:assetId/viewed","description":"

Increments view count for asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","viewed"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f96b39e2-1016-4675-beb1-dce8a554f4ae","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"ded3f833-0958-40b0-be23-34ffcba8302e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/viewed","host":["https://api.mediavalet.com"],"path":["assets",":assetId","viewed"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"1a986d55-67cc-4ba3-9e9e-db4fd8b830c9","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/viewed","host":["https://api.mediavalet.com"],"path":["assets",":assetId","viewed"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8143f02c-c514-4f14-922f-48d20fcbade0","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/viewed","host":["https://api.mediavalet.com"],"path":["assets",":assetId","viewed"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"38a5e03e-5271-4484-b681-2796ff0de850","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/viewed","host":["https://api.mediavalet.com"],"path":["assets",":assetId","viewed"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c193f021-5fe9-4429-a32b-bac7a82956cd"},{"name":"Create Asset Upload","id":"66b335aa-c651-4268-85d1-83c45c296e31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/uploads","description":"

Creates an asset upload and returns newly created asset information.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","uploads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"2edcfc15-cfd9-48e7-93d6-b8655e547bcb","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"ea86ccaa-9757-4665-964b-1dc3c55ff3f7","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/uploads","host":["https://api.mediavalet.com"],"path":["assets",":assetId","uploads"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"uploadUrl\": \"\",\n \"uploadFileName\": \"\",\n \"mediaFileId\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ullamco__8\": {},\n \"aliquaed5\": {},\n \"quiddd\": {}\n },\n \"interpolations\": {\n \"reprehenderita\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:share\"\n ]\n}"},{"id":"63af8926-47b2-4cfd-b9c3-920c18346dce","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/uploads","host":["https://api.mediavalet.com"],"path":["assets",":assetId","uploads"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c08cc419-75d1-4245-afa3-523ddef10e11","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/uploads","host":["https://api.mediavalet.com"],"path":["assets",":assetId","uploads"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d9c270b2-dc81-4af6-8e2c-70a33cb6e5bc","name":"An asset was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/uploads","host":["https://api.mediavalet.com"],"path":["assets",":assetId","uploads"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"uploadUrl\": \"\",\n \"uploadFileName\": \"\",\n \"mediaFileId\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ullamco__8\": {},\n \"aliquaed5\": {},\n \"quiddd\": {}\n },\n \"interpolations\": {\n \"reprehenderita\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:share\"\n ]\n}"},{"id":"f296345d-8ead-47e2-a14c-c57cb5d406ef","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/uploads","host":["https://api.mediavalet.com"],"path":["assets",":assetId","uploads"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"66b335aa-c651-4268-85d1-83c45c296e31"},{"name":"Check-Out Asset","id":"42a75967-2993-4b10-8da5-845e603e3119","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/checkOut","description":"

ChecksOut an asset and returns the current blob URL.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","checkOut"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"eeeb1956-a5ad-4523-a8f0-4043e6ecc686","description":{"content":"

(Required) The asset Id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"a5d38d38-3030-4da8-83f9-b02a5e7b5e07","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/checkOut","host":["https://api.mediavalet.com"],"path":["assets",":assetId","checkOut"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"39cac16a-ec1e-426e-9c5b-70900679a356","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/checkOut","host":["https://api.mediavalet.com"],"path":["assets",":assetId","checkOut"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"948e8c2e-a132-4289-b713-4e3a2b1c5a39","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/checkOut","host":["https://api.mediavalet.com"],"path":["assets",":assetId","checkOut"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8c1af6d3-9586-4b7b-9a61-358492d963af","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/checkOut","host":["https://api.mediavalet.com"],"path":["assets",":assetId","checkOut"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in1e\": {},\n \"officiaef\": {},\n \"deserunt8\": {}\n },\n \"interpolations\": {\n \"nisi_a\": {},\n \"consequat_7_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:assignAsset\"\n ]\n}"}],"_postman_id":"42a75967-2993-4b10-8da5-845e603e3119"},{"name":"Validate Check-In Filename","id":"9cd350c8-3568-4ff3-ba0e-1ace54c8ffc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assetCheckIn/:id/validate","description":"

Validate asset check-in filename.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assetCheckIn",":id","validate"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"48b1d932-6d85-4f19-956a-ca8d9775240f","description":{"content":"

(Required) The asset Id.

\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"8050191f-9809-46a1-a3e9-07baa722d16e","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"343d3c26-2130-4e22-880c-16616d577b7e","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in1e\": {},\n \"officiaef\": {},\n \"deserunt8\": {}\n },\n \"interpolations\": {\n \"nisi_a\": {},\n \"consequat_7_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"a0e95b52-0f22-4b2f-be60-4a1960d698cf","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fb4fe53d-97df-4eca-b1de-d1fa5b0d40e5","name":"Server refused the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in1e\": {},\n \"officiaef\": {},\n \"deserunt8\": {}\n },\n \"interpolations\": {\n \"nisi_a\": {},\n \"consequat_7_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"68b7bfd4-1003-478c-be5b-6d8f416ede0e","name":"The asset with the supplied file name already exists.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fe70df9b-2f1b-48d9-9841-b70a9c124751","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assetCheckIn/:id/validate","host":["https://api.mediavalet.com"],"path":["assetCheckIn",":id","validate"],"variable":[{"key":"id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9cd350c8-3568-4ff3-ba0e-1ace54c8ffc2"},{"name":"Report Downloaded Asset","id":"333812b1-8e77-4d6f-bd23-3710c1e3d858","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/assets/:assetId/downloaded","description":"

Reports that the asset was downloaded.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","downloaded"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"5dab810e-a8a5-4253-a238-7148ee9f760e","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"3b6a20cc-ca7e-4c13-8000-f583c13e5dcb","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/downloaded","host":["https://api.mediavalet.com"],"path":["assets",":assetId","downloaded"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3e074505-6dc7-44bf-9f4a-67a1a91015ad","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/downloaded","host":["https://api.mediavalet.com"],"path":["assets",":assetId","downloaded"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2a7ecf60-5210-4ade-9196-362e7a906dad","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/downloaded","host":["https://api.mediavalet.com"],"path":["assets",":assetId","downloaded"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"333812b1-8e77-4d6f-bd23-3710c1e3d858"},{"name":"Create Keywords And Associate With Asset [Cognitive]","id":"13b42a1b-5f5b-496c-a7dc-0aa62423658d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/autotags/keywords","description":"

Creates one or more keywords in the default Cognitive Keyword Group,\nand assigns the keyword to the asset specified in the URL.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","autotags","keywords"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"60cd4884-b80a-474d-a6c5-8ac74798a592","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"3b3abea9-20ee-44d4-ab7d-e64d214a93cf","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/autotags/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","autotags","keywords"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"keywordName\": \"\",\n \"isSearchable\": \"\",\n \"isApproved\": \"\",\n \"groupName\": \"\",\n \"groupPath\": \"\",\n \"approvedAt\": \"\",\n \"approvedBy\": \"\",\n \"requestedAt\": \"\",\n \"approvalStatus\": \"\",\n \"requestedBy\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sit0\": {},\n \"consecteturcc\": {},\n \"officia_3f\": {},\n \"irure_e\": {}\n },\n \"interpolations\": {\n \"dolore99c\": {},\n \"voluptate__b\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"asset:shareAsLightbox\"\n ]\n },\n {\n \"id\": \"\",\n \"keywordName\": \"\",\n \"isSearchable\": \"\",\n \"isApproved\": \"\",\n \"groupName\": \"\",\n \"groupPath\": \"\",\n \"approvedAt\": \"\",\n \"approvedBy\": \"\",\n \"requestedAt\": \"\",\n \"approvalStatus\": \"\",\n \"requestedBy\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sit_c\": {}\n },\n \"interpolations\": {\n \"elitfb5\": {},\n \"temporb4\": {},\n \"suntb\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"cd56a6f1-8247-4d71-a1bd-a8810497dc30","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/autotags/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","autotags","keywords"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5add08cd-1249-4744-9d6e-e52b1ff6c3ff","name":"An asset was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/autotags/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","autotags","keywords"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"13b42a1b-5f5b-496c-a7dc-0aa62423658d"},{"name":"Create Video Intelligence Analysis","id":"45e8f4cb-180d-4b82-b666-77517c52fcd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/analyze","description":"

Create the video intelligence analysis.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","videoIntelligence","analyze"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f11929c4-2197-4606-bbda-dca644c91871","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"2fd6a6f8-2266-4e14-a82a-48fc2388f0e4","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/analyze","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","analyze"],"variable":[{"key":"assetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"Status\": \"\",\n \"VideoIndexerId\": \"\",\n \"RequestSubmittedOn\": \"\",\n \"StatusLastCheckedOn\": \"\",\n \"AnalysisCompletedOn\": \"\"\n}"},{"id":"5666b287-153f-4851-9ebb-6f2817a06efe","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/analyze","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","analyze"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6c111f74-45dc-4458-b4ec-453cb6033ba5","name":"The request failed due to payment issues.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/analyze","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","analyze"],"variable":[{"key":"assetId"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ad601433-f488-4341-9478-b11693e76c7c","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/analyze","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","analyze"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"36a5e90a-ec7c-4959-8268-dd09aaf44fe6","name":"An asset was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/analyze","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","analyze"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8d4403e5-7443-4ad3-9653-da9f48bf50bc","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/analyze","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","analyze"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"45e8f4cb-180d-4b82-b666-77517c52fcd0"},{"name":"Create Keywords And Associate With Asset [Audio And Video]","id":"0bb7528b-4158-4cdb-84a0-6751ca149bf3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/keywords","description":"

Creates one or more keywords in the default Audio and Video Keyword Group and assigns the keyword to the asset specified in the URL.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","videoIntelligence","keywords"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"53ed5b88-2a30-452d-b95c-b9aa197e34a3","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"c9a24208-1564-463f-8f4d-9d91add4de1f","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","keywords"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"keywordName\": \"\",\n \"isSearchable\": \"\",\n \"isApproved\": \"\",\n \"groupName\": \"\",\n \"groupPath\": \"\",\n \"approvedAt\": \"\",\n \"approvedBy\": \"\",\n \"requestedAt\": \"\",\n \"approvalStatus\": \"\",\n \"requestedBy\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sit0\": {},\n \"consecteturcc\": {},\n \"officia_3f\": {},\n \"irure_e\": {}\n },\n \"interpolations\": {\n \"dolore99c\": {},\n \"voluptate__b\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"asset:shareAsLightbox\"\n ]\n },\n {\n \"id\": \"\",\n \"keywordName\": \"\",\n \"isSearchable\": \"\",\n \"isApproved\": \"\",\n \"groupName\": \"\",\n \"groupPath\": \"\",\n \"approvedAt\": \"\",\n \"approvedBy\": \"\",\n \"requestedAt\": \"\",\n \"approvalStatus\": \"\",\n \"requestedBy\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sit_c\": {}\n },\n \"interpolations\": {\n \"elitfb5\": {},\n \"temporb4\": {},\n \"suntb\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"51df4403-5569-491d-baec-f23f2328d5af","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","keywords"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cb81fac9-a902-4bab-944e-109372a7296a","name":"An asset was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/keywords","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","keywords"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0bb7528b-4158-4cdb-84a0-6751ca149bf3"},{"name":"Create Intelligence Analysis Insight","id":"371ee239-6aad-49b9-b8bb-f026e8b13cc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insightsupdated","description":"

Create video intelligence analysis for an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","videoIntelligence","insightsupdated"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"1af79940-dbdf-4137-a46b-11feab2cb415","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"3698ea59-2d2f-4718-b6bf-8df688816c39","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insightsupdated","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","insightsupdated"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3839e847-ca47-4929-b34e-503615ed91be","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insightsupdated","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","insightsupdated"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"15712333-f3f0-4262-bc00-a191d0699a81","name":"An asset was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insightsupdated","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","insightsupdated"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d430de64-84bf-463b-b93d-5c38f0ef2ae2","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/videoIntelligence/insightsupdated","host":["https://api.mediavalet.com"],"path":["assets",":assetId","videoIntelligence","insightsupdated"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"371ee239-6aad-49b9-b8bb-f026e8b13cc0"},{"name":"Remove Asset Autotag","id":"4ca1e6c3-3a14-4f09-af1c-0b6dcd2df3de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/assets/:assetId/autotags/:autotag","description":"

Removes autotag from an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","autotags",":autotag"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"1968d6b4-06d1-4515-9d8a-6a286275bfe2","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"d420f88e-cdf4-46cd-bb86-7265b87568b3","description":{"content":"

(Required) The autotag.

\n","type":"text/plain"},"type":"any","value":"","key":"autotag"}]}},"response":[{"id":"1c0ab645-adee-44ff-9d04-25226e942e41","name":"Request was accepted.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/autotags/:autotag","host":["https://api.mediavalet.com"],"path":["assets",":assetId","autotags",":autotag"],"variable":[{"key":"assetId"},{"key":"autotag"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"109db300-c53c-475d-87a6-57753696ad15","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/autotags/:autotag","host":["https://api.mediavalet.com"],"path":["assets",":assetId","autotags",":autotag"],"variable":[{"key":"assetId"},{"key":"autotag"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"671fd1bd-4b03-4f36-b094-2f599912257f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/autotags/:autotag","host":["https://api.mediavalet.com"],"path":["assets",":assetId","autotags",":autotag"],"variable":[{"key":"assetId"},{"key":"autotag"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4ca1e6c3-3a14-4f09-af1c-0b6dcd2df3de"},{"name":"Remove Asset Keyword","id":"80ddfb96-9bf3-4d1a-a664-2519f97d9ba0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/assets/:assetId/keywords/:keyword","description":"

Removes keyword from asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","keywords",":keyword"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"b54bc861-19fa-4f5f-950c-17b6027eccac","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"275ded07-adc9-4c62-974b-c7bbc5301772","description":{"content":"

(Required) The keyword name.

\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"374843da-d36c-4fcb-95b1-3f19672b222d","name":"Request was accepted.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords/:keyword","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords",":keyword"],"variable":[{"key":"assetId"},{"key":"keyword"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"87fe8a4c-d3b9-4119-ae3c-a6f2bbad2034","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords/:keyword","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords",":keyword"],"variable":[{"key":"assetId"},{"key":"keyword"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"036521b1-2075-4dc9-a226-33a953d3c9f3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/keywords/:keyword","host":["https://api.mediavalet.com"],"path":["assets",":assetId","keywords",":keyword"],"variable":[{"key":"assetId"},{"key":"keyword"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"80ddfb96-9bf3-4d1a-a664-2519f97d9ba0"},{"name":"Remove Asset Category","id":"82c28ee9-6578-4d49-88a5-18f5cfcf7410","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/assets/:assetId/categories/:categoryId","description":"

Removes the category from the asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","categories",":categoryId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f25e6e11-bea1-458c-bf90-abaf45ada031","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"e67759b2-8ad4-44ad-bf6f-27110634a271","description":{"content":"

(Required) The guid of the category.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"b306f9e4-0232-4385-b914-5fafb0389f31","name":"Request was accepted.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories",":categoryId"],"variable":[{"key":"assetId"},{"key":"categoryId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fac5b994-0138-4e00-8c77-445bbc07511e","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories",":categoryId"],"variable":[{"key":"assetId"},{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a5dae88b-f397-42e6-9f10-0f8e5eee32cd","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","categories",":categoryId"],"variable":[{"key":"assetId"},{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"82c28ee9-6578-4d49-88a5-18f5cfcf7410"},{"name":"Remove Related Asset","id":"61f37d12-1260-401d-a148-9e9f731ba33b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/assets/:assetId/relatedassets/:relatedAssetId","description":"

Remove related asset based on asset id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["assets",":assetId","relatedassets",":relatedAssetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"3c393942-14bd-467e-8681-905488891d06","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"4298cc23-3ab1-46af-9991-6ae0acdf4147","description":{"content":"

(Required) The related asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"relatedAssetId"}]}},"response":[{"id":"6176c1ef-cc52-4393-8fbe-ca044331d915","name":"Request was accepted.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets/:relatedAssetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets",":relatedAssetId"],"variable":[{"key":"assetId"},{"key":"relatedAssetId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"bec175e9-8332-4548-8519-9a1464a7a223","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets/:relatedAssetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets",":relatedAssetId"],"variable":[{"key":"assetId"},{"key":"relatedAssetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b54a307b-6b6f-4218-b91f-f934b5e7100a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/assets/:assetId/relatedassets/:relatedAssetId","host":["https://api.mediavalet.com"],"path":["assets",":assetId","relatedassets",":relatedAssetId"],"variable":[{"key":"assetId"},{"key":"relatedAssetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"61f37d12-1260-401d-a148-9e9f731ba33b"}],"id":"45172509-231d-4a23-8d9c-86c11f98f2c1","_postman_id":"45172509-231d-4a23-8d9c-86c11f98f2c1","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"AttributeGroups","item":[{"name":"Gets all Attribute Groups for the current library.","id":"0850e57f-468f-4596-82d6-58b95d4cf03d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributeGroups","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributeGroups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"bf9fd552-4425-4567-b913-4ed9c96ec8ff","name":"The Attribute Groups were successfully retrieved.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributeGroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"attributeGroupId\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:shareAsLink\",\n \"lightbox:assignAsset\"\n ]\n },\n {\n \"attributeGroupId\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"attributeGroup:view\",\n \"asset:shareAsLink\"\n ]\n }\n]"},{"id":"69748366-a847-4bea-8607-7ea5413391c8","name":"Attribute grouping is not enabled for this library or you do not have permission to view attribute groups.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":"https://api.mediavalet.com/attributeGroups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"324ca6c2-4638-428e-b0bb-14b3a05454ec","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":"https://api.mediavalet.com/attributeGroups"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0850e57f-468f-4596-82d6-58b95d4cf03d"},{"name":"Creates a new Attribute Group.","id":"848f7ecc-57b5-4d8f-b9eb-4684e4106dbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributeGroups","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributeGroups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"44bc6efb-bdb1-4d3a-b2a5-cfb3c0178e56","name":"OK","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributeGroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"a5dfef78-6b15-4b18-ac44-3b906cbf4873","name":"The Attribute Group was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributeGroups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"attributeGroupId\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"attributeGroup:viewAttribute\"\n ]\n}"},{"id":"0000b0a2-e1f0-40fa-ae93-04647bc1e63f","name":"Bad Request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributeGroups"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9b85f18e-ba07-408d-8118-6d75e0a68cbb","name":"Attribute grouping is not enabled for this library or you do not have permission to create attribute groups.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributeGroups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7bde773d-7960-4cf5-955e-2941a7b7fc38","name":"Attribute not found","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributeGroups"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"082bd156-3601-4fac-a615-92df526a5614","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributeGroups"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"848f7ecc-57b5-4d8f-b9eb-4684e4106dbd"},{"name":"Gets the details of a specific Attribute Group by ID.","id":"0ce9034b-b0a3-4b7a-ac55-dd86ca2f5eac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributeGroups",":attributeGroupId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"daa5496c-23e8-4ee6-8dec-352113bde4a9","description":{"content":"

The unique identifier of the attribute group to be retrieved.

\n","type":"text/plain"},"type":"any","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","key":"attributeGroupId"}]}},"response":[{"id":"4e2435fd-4c2e-4b46-b2e3-1577cd519319","name":"The Attribute Group was successfully retrieved.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"attributeGroupId\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"attributeGroup:viewAttribute\"\n ]\n}"},{"id":"be674133-7577-40e1-bfe6-b36b8ab76f97","name":"Attribute grouping is not enabled for this library or you do not have permission to view attribute groups.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"548f12cf-b09a-4a7f-827b-4a50791a92af","name":"The Attribute Group was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"58d347a2-fdd5-4be2-9b5c-c151b2f0cbc8","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0ce9034b-b0a3-4b7a-ac55-dd86ca2f5eac"},{"name":"Deletes an Attribute Group.","id":"ab598978-aa43-4fbf-9ab7-6c90ed11b28f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributeGroups",":attributeGroupId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"d08a4360-ffb7-4223-9676-c62babf63f81","description":{"content":"

The unique identifier of the attribute group to be deleted.

\n","type":"text/plain"},"type":"any","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","key":"attributeGroupId"}]}},"response":[{"id":"044d33a1-e088-4421-ad2d-d200ce3b43be","name":"The Attribute Group was successfully deleted.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ced356ea-8ec3-451c-afbf-56bc9d134d70","name":"Bad Request.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b22b1716-5516-4176-948f-1bb1e59ab6d5","name":"Attribute grouping is not enabled for this library or you do not have permission to delete attribute groups.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3cc79c77-4c95-4704-99ef-c16bf69c90fb","name":"The Attribute Group was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"057ecb23-044f-45d9-bb42-6106cb35900e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ab598978-aa43-4fbf-9ab7-6c90ed11b28f"},{"name":"Attribute Groups Update Attribute Group Async","id":"77dd22e5-b74e-428a-b5bc-e21d43202978","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n },\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributeGroups",":attributeGroupId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"541d7e2f-83f3-4fc0-93ea-c069dfc5f47a","type":"any","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","key":"attributeGroupId"}]}},"response":[{"id":"8ad0cde6-011a-4976-b60d-68124b119481","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n },\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"attributeGroupId\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"string\",\n \"description\": \"string\",\n \"attributeIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"attributeGroup:viewAttribute\"\n ]\n}"},{"id":"78fcb71a-fde0-4657-a271-fba8dc4ab2ca","name":"Bad Request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n },\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4a179b22-4705-4f53-a847-d57af35bc6f9","name":"Attribute grouping is not enabled for this library or you do not have permission to create attribute groups.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n },\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"845a8cef-e49f-47b5-b383-f3103dad202d","name":"The Attribute Group was not found.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n },\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9d90b294-bdc9-4f9e-b40a-5d776849a6ff","name":"An Attribute Group with the specified name already exists.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n },\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"281a478f-e4c5-48a4-a74a-1e21d906583c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n },\n {\n \"op\": \"string\",\n \"path\": \"string\",\n \"value\": {},\n \"from\": \"string\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId"],"variable":[{"key":"attributeGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"77dd22e5-b74e-428a-b5bc-e21d43202978"},{"name":"Gets all Attributes for a specific Attribute Group by ID.","id":"eea6bc04-2792-4486-8dc4-fa44040cd580","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributeGroups/:attributeGroupId/attributes","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributeGroups",":attributeGroupId","attributes"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"4e46b764-a741-4019-8e00-6169fc9a4b1f","description":{"content":"

The unique identifier of the attribute group whose attributes are to be retrieved.

\n","type":"text/plain"},"type":"any","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","key":"attributeGroupId"}]}},"response":[{"id":"98f93b82-5802-4258-9aa9-539fddcf1677","name":"Attributes for the Attribute Group were successfully retrieved.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId/attributes","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId","attributes"],"variable":[{"key":"attributeGroupId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Boolean\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": false,\n \"embeddedDataType\": \"Photoshop\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Upload\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 4858\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 5763\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 3211,\n \"sequence\": 7980\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 5663,\n \"sequence\": 1873\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:shareAsLightbox\"\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"DateTime\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"Iptc\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Upload\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": true,\n \"showLabel\": false,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 3956\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 409\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 809,\n \"sequence\": 1850\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7824,\n \"sequence\": 8739\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"asset:shareAsCdnLink\"\n ]\n }\n]"},{"id":"54d905ec-ace5-4dce-bb7a-66ce52337243","name":"Attribute grouping is not enabled for this library or you do not have permission to view attribute groups.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId/attributes","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId","attributes"],"variable":[{"key":"attributeGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"736572a7-752d-4fae-be4f-2c81ffb3091c","name":"The Attribute Group was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId/attributes","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId","attributes"],"variable":[{"key":"attributeGroupId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d36247f3-4c7f-404f-a15e-7835c5819002","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributeGroups/:attributeGroupId/attributes","host":["https://api.mediavalet.com"],"path":["attributeGroups",":attributeGroupId","attributes"],"variable":[{"key":"attributeGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eea6bc04-2792-4486-8dc4-fa44040cd580"}],"id":"c6d1f65a-e175-4e27-9a1b-33137dbfd761","_postman_id":"c6d1f65a-e175-4e27-9a1b-33137dbfd761","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Attributes","item":[{"name":"Retrieve Attributes.","id":"9ea8aa57-237d-440b-8e52-438fc67e5d37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes","description":"

Retrieve attributes from a library.\nStatus Type Attributes available in API Version 1.1

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"0532e4c4-385a-4635-8e81-ba7a33c47c2f","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Boolean\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": false,\n \"embeddedDataType\": \"Photoshop\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Upload\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 4858\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 5763\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 3211,\n \"sequence\": 7980\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 5663,\n \"sequence\": 1873\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:shareAsLightbox\"\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"DateTime\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"Iptc\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Upload\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": true,\n \"showLabel\": false,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 3956\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 409\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 809,\n \"sequence\": 1850\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7824,\n \"sequence\": 8739\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"asset:shareAsCdnLink\"\n ]\n }\n]"},{"id":"a1fa6e92-8cd5-4451-8df4-0985d01b633a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":"https://api.mediavalet.com/attributes"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9ea8aa57-237d-440b-8e52-438fc67e5d37"},{"name":"Create Attribute.","id":"5cd27fd7-f098-430e-9c87-2f09242e9bcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributes","description":"

Create a attribute in a library.\nStatus Type Attributes available in API Version 1.1

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"534073f4-d708-4a11-b4c7-80b52e2433e1","name":"OK","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"5e6bca30-dd28-4ec7-be33-3686a3231abb","name":"The Attribute was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributes"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}"},{"id":"a19012db-61fb-4cff-8a87-ed1102110b94","name":"Bad Request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d40ca20e-292e-4e42-82fa-2b1cef527231","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributes"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5cd27fd7-f098-430e-9c87-2f09242e9bcc"},{"name":"Retrieve Attribute By ID.","id":"11fdde8f-2b52-4b49-aa54-13b8d1625b07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/:attributeId","description":"

Retrieve attributes in a library by attribute id.\nStatus Type Attributes available in API Version 1.1

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes",":attributeId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"cd31619d-dfa7-4f29-abbe-8f43893c08a8","description":{"content":"

The attribute id.

\n","type":"text/plain"},"type":"any","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","key":"attributeId"}]}},"response":[{"id":"3627a0ef-2549-423d-920c-57fdef663cd8","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/attributes/:attributeId","host":["https://api.mediavalet.com"],"path":["attributes",":attributeId"],"variable":[{"key":"attributeId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}"},{"id":"589ba845-4ed3-4eb9-9b5d-a0afcf55c312","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributes/:attributeId","host":["https://api.mediavalet.com"],"path":["attributes",":attributeId"],"variable":[{"key":"attributeId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"633f1947-accc-4c6a-9790-de3d8d85ff5e","name":"Attribute not found","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributes/:attributeId","host":["https://api.mediavalet.com"],"path":["attributes",":attributeId"],"variable":[{"key":"attributeId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6cf3942f-77aa-4ac1-86db-63c464c86da8","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributes/:attributeId","host":["https://api.mediavalet.com"],"path":["attributes",":attributeId"],"variable":[{"key":"attributeId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"11fdde8f-2b52-4b49-aa54-13b8d1625b07"},{"name":"Update Attributes.","id":"915bcab5-49b2-4f74-91d5-5dc1f1a8d9c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/attributes/:attributeId","description":"

Update attributes in a library.\nStatus Type Attributes available in API Version 1.1

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes",":attributeId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"1ee279ec-b1fc-4518-a092-9891aa46d4fb","description":{"content":"

The attribute id.

\n","type":"text/plain"},"type":"any","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","key":"attributeId"}]}},"response":[{"id":"ab7b139e-3e52-40b1-a364-c021f5e7c96b","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/attributes/:attributeId","host":["https://api.mediavalet.com"],"path":["attributes",":attributeId"],"variable":[{"key":"attributeId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}"},{"id":"ddc156e1-316c-4634-8ae9-658b13fc65cf","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/attributes/:attributeId","host":["https://api.mediavalet.com"],"path":["attributes",":attributeId"],"variable":[{"key":"attributeId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8133a52e-ff2a-4bc1-9a9c-03b607ffff9f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"attributeType\": \"Status\",\n \"name\": \"string\",\n \"searchFieldName\": \"string\",\n \"tagName\": \"string\",\n \"displayAttribute\": false,\n \"mapEmbeddedData\": true,\n \"embeddedDataType\": \"IccProfile\",\n \"embeddedDataValue\": \"string\",\n \"mappingDirection\": \"Download\",\n \"delimeter\": \"string\",\n \"isSystemProperty\": false,\n \"showLabel\": true,\n \"isRequired\": false,\n \"optionsList\": [\n {\n \"optionValue\": \"string\",\n \"isDefault\": true,\n \"sequence\": 3145\n },\n {\n \"optionValue\": \"string\",\n \"isDefault\": false,\n \"sequence\": 6691\n }\n ],\n \"statusList\": [\n {\n \"statusName\": \"string\",\n \"statusValue\": 6855,\n \"sequence\": 2253\n },\n {\n \"statusName\": \"string\",\n \"statusValue\": 7822,\n \"sequence\": 3613\n }\n ],\n \"defaultExpression\": \"string\",\n \"parentAttributeId\": \"string\",\n \"childrenAttributeIds\": [\n \"string\",\n \"string\"\n ],\n \"attributeGroupIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"None\",\n \"asset:downloadFromMvd\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/attributes/:attributeId","host":["https://api.mediavalet.com"],"path":["attributes",":attributeId"],"variable":[{"key":"attributeId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"915bcab5-49b2-4f74-91d5-5dc1f1a8d9c4"},{"name":"Remove Attribute","id":"c1d2b06d-317f-40a6-ae96-4a14bb61688d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/attributes/:attributeId","description":"

Removes attribute in a library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes",":attributeId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"9874b931-5b27-47d4-9942-4dba84569c7c","description":{"content":"

The attribute id

\n","type":"text/plain"},"type":"any","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","key":"attributeId"}]}},"response":[{"id":"ea758f4c-5bfb-4056-ba3b-fee146a11c0f","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributes/:attributeId","host":["https://api.mediavalet.com"],"path":["attributes",":attributeId"],"variable":[{"key":"attributeId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4ea0bb9f-1cf5-46a3-be19-ba3bd4cdba3a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributes/:attributeId","host":["https://api.mediavalet.com"],"path":["attributes",":attributeId"],"variable":[{"key":"attributeId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c1d2b06d-317f-40a6-ae96-4a14bb61688d"},{"name":"Retrieve Attributes Embedded Data Types","id":"6d14b6ee-51a8-4235-816b-5d9ed0fdd3ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/embeddedDataType","description":"

Returns an embedded attribute data types.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes","embeddedDataType"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"97578780-77f7-4e4c-8b81-ebc218a41623","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/embeddedDataType"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"name\": \"string\",\n \"value\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"brandedPortal:view\"\n ]\n },\n {\n \"name\": \"string\",\n \"value\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {},\n \"key_4\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"lightbox:editDetails\"\n ]\n }\n]"},{"id":"e1595a06-86b4-4954-afbb-d295c28964c2","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":"https://api.mediavalet.com/attributes/embeddedDataType"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6d14b6ee-51a8-4235-816b-5d9ed0fdd3ca"},{"name":"Retrieve Attributes Data Types","id":"3d0048ee-d0c7-46bb-83b6-133d5426a9b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/attributeDataType","description":"

Attributes data types.\nStatus Type Attributes available in API Version 1.1

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes","attributeDataType"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"c9ce625b-a72d-4150-a381-defeeb1dda92","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/attributeDataType"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"name\": \"string\",\n \"value\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"brandedPortal:view\"\n ]\n },\n {\n \"name\": \"string\",\n \"value\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {},\n \"key_4\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"lightbox:editDetails\"\n ]\n }\n]"},{"id":"a7384431-8828-4660-8b64-d5e1c05a3a63","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":"https://api.mediavalet.com/attributes/attributeDataType"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3d0048ee-d0c7-46bb-83b6-133d5426a9b3"},{"name":"Retrieve Cascading Attributes","id":"22a357ec-2682-4eda-a697-3c491e426c96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/cascadingAttributes","description":"

Returns an cascading attributes.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes","cascadingAttributes"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"04ef0db3-d663-4681-b07b-f9a3708cf7c5","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/cascadingAttributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"attributeDataType\": \"List\",\n \"attributeOptionNodeDtos\": [\n {\n \"attributeId\": \"string\",\n \"name\": \"string\",\n \"parent\": \"string\",\n \"children\": [\n \"string\",\n \"string\"\n ]\n },\n {\n \"attributeId\": \"string\",\n \"name\": \"string\",\n \"parent\": \"string\",\n \"children\": [\n \"string\",\n \"string\"\n ]\n }\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"asset:createVideoClip\"\n ]\n}"},{"id":"20d2b416-ff96-44cf-a46a-d540a966c81b","name":"Bad Request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":"https://api.mediavalet.com/attributes/cascadingAttributes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"02b92560-a390-4e4e-9f80-39a0e57264ed","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":"https://api.mediavalet.com/attributes/cascadingAttributes"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"22a357ec-2682-4eda-a697-3c491e426c96"},{"name":"Retrieve Attributes Embedded Data Mapping Types","id":"00679149-ec22-4998-9dee-8475a493c78b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/embeddedDataMappingType","description":"

Returns an of embedded attribute data mapping types.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes","embeddedDataMappingType"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"0d2e80d4-7452-40ab-939b-c0505f7260e5","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/embeddedDataMappingType"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"name\": \"string\",\n \"value\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"brandedPortal:view\"\n ]\n },\n {\n \"name\": \"string\",\n \"value\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {},\n \"key_4\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"lightbox:editDetails\"\n ]\n }\n]"},{"id":"a5af12a3-0e5e-40e4-b153-e879b58af1e5","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":"https://api.mediavalet.com/attributes/embeddedDataMappingType"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"00679149-ec22-4998-9dee-8475a493c78b"},{"name":"Retrieve Attributes Embedded Data Values","id":"a05cc87f-4e63-4e4e-b0fc-4d185863d1dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/attributes/:dataTypeValue/embeddedDataValue","description":"

Returns an embedded attribute data values.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["attributes",":dataTypeValue","embeddedDataValue"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"d7dcc51c-8ac2-4845-a8db-22affda6c3df","description":{"content":"

A Data Type Value

\n","type":"text/plain"},"type":"any","value":"Iptc","key":"dataTypeValue"}]}},"response":[{"id":"120ae2bd-d371-413b-93ce-fa7eeb0b21e8","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/attributes/:dataTypeValue/embeddedDataValue","host":["https://api.mediavalet.com"],"path":["attributes",":dataTypeValue","embeddedDataValue"],"variable":[{"key":"dataTypeValue"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"propertyName\": \"string\",\n \"id\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"propertyName\": \"string\",\n \"id\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:downloadFromMvd\"\n ]\n }\n]"},{"id":"166b9994-daa2-4505-8189-865200cfb627","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/attributes/:dataTypeValue/embeddedDataValue","host":["https://api.mediavalet.com"],"path":["attributes",":dataTypeValue","embeddedDataValue"],"variable":[{"key":"dataTypeValue"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a05cc87f-4e63-4e4e-b0fc-4d185863d1dc"}],"id":"0aaf2cf4-558d-49a4-bcd7-7bb9cfa60486","_postman_id":"0aaf2cf4-558d-49a4-bcd7-7bb9cfa60486","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Authorization","item":[{"name":"Return all policies for a library based on authenticated User.","id":"86334d5c-20d3-40bd-8b75-752756d99bf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/authorization/policies","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["authorization","policies"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"8a9b41f3-2c57-41ba-b8b4-03e809864a67","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/authorization/policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"policyId\": 2604,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:assignAsset\"\n ]\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsCdnLink\"\n ]\n },\n \"inherited\": false,\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:shareAsWebGallery\"\n ]\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": true,\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"asset:shareAsWebGallery\"\n ]\n },\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:createVideoClip\"\n ]\n },\n {\n \"policyId\": 7857,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"attributeGroup:viewAttribute\",\n \"asset:shareAsZippedFile\"\n ]\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {},\n \"key_4\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"asset:downloadFromPortal\"\n ]\n },\n \"inherited\": true,\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"asset:shareAsLightbox\"\n ]\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false,\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"asset:shareAsLink\"\n ]\n },\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:downloadFromMvd\"\n ]\n }\n]"}],"_postman_id":"86334d5c-20d3-40bd-8b75-752756d99bf1"},{"name":"Create or remove policies.","id":"3ce830a1-10c3-4831-ae03-65a58004d1ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": 4147,\n \"reasonForChange\": \"string\",\n \"addedPolicies\": [\n {\n \"policyId\": 6746,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n },\n {\n \"policyId\": 6729,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n }\n ],\n \"removedPolicies\": [\n 3541,\n 2305\n ],\n \"notification\": {\n \"entityIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"users\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"userEmails\": [\n \"string\",\n \"string\"\n ],\n \"message\": \"string\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/authorization/policies","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["authorization","policies"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"2ca6df3a-c763-4c2e-8025-de0fe0dd6af4","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": 4147,\n \"reasonForChange\": \"string\",\n \"addedPolicies\": [\n {\n \"policyId\": 6746,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n },\n {\n \"policyId\": 6729,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n }\n ],\n \"removedPolicies\": [\n 3541,\n 2305\n ],\n \"notification\": {\n \"entityIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"users\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"userEmails\": [\n \"string\",\n \"string\"\n ],\n \"message\": \"string\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/authorization/policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"policyId\": 2604,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:assignAsset\"\n ]\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsCdnLink\"\n ]\n },\n \"inherited\": false,\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:shareAsWebGallery\"\n ]\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": true,\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"asset:shareAsWebGallery\"\n ]\n },\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:createVideoClip\"\n ]\n },\n {\n \"policyId\": 7857,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"attributeGroup:viewAttribute\",\n \"asset:shareAsZippedFile\"\n ]\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\",\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {},\n \"key_4\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"asset:downloadFromPortal\"\n ]\n },\n \"inherited\": true,\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {},\n \"key_3\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"asset:shareAsLightbox\"\n ]\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false,\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"interpolations\": {\n \"key_0\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"asset:shareAsLink\"\n ]\n },\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:downloadFromMvd\"\n ]\n }\n]"},{"id":"74dc89c6-c952-41b5-ae5e-6307c71cdb77","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": 4147,\n \"reasonForChange\": \"string\",\n \"addedPolicies\": [\n {\n \"policyId\": 6746,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n },\n {\n \"policyId\": 6729,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n }\n ],\n \"removedPolicies\": [\n 3541,\n 2305\n ],\n \"notification\": {\n \"entityIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"users\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"userEmails\": [\n \"string\",\n \"string\"\n ],\n \"message\": \"string\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/authorization/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"dc7ad551-472d-48b5-867c-4752c69a68fe","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": 4147,\n \"reasonForChange\": \"string\",\n \"addedPolicies\": [\n {\n \"policyId\": 6746,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n },\n {\n \"policyId\": 6729,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n }\n ],\n \"removedPolicies\": [\n 3541,\n 2305\n ],\n \"notification\": {\n \"entityIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"users\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"userEmails\": [\n \"string\",\n \"string\"\n ],\n \"message\": \"string\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/authorization/policies"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5a8ae490-f9d7-4664-a5a2-859d30fc1f8d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": 4147,\n \"reasonForChange\": \"string\",\n \"addedPolicies\": [\n {\n \"policyId\": 6746,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n },\n {\n \"policyId\": 6729,\n \"subject\": {\n \"subjectId\": \"00000000-0000-0000-0000-000000000000\",\n \"subjectType\": \"string\"\n },\n \"resource\": {\n \"resourceId\": \"00000000-0000-0000-0000-000000000000\",\n \"resourceType\": \"string\",\n \"predicate\": {\n \"predicateType\": \"string\",\n \"predicateId\": \"00000000-0000-0000-0000-000000000000\",\n \"predicateValues\": \"string\"\n },\n \"inherited\": true\n },\n \"grant\": {\n \"grantType\": \"string\",\n \"grantName\": \"string\",\n \"allowed\": false\n }\n }\n ],\n \"removedPolicies\": [\n 3541,\n 2305\n ],\n \"notification\": {\n \"entityIds\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"users\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"userEmails\": [\n \"string\",\n \"string\"\n ],\n \"message\": \"string\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/authorization/policies"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3ce830a1-10c3-4831-ae03-65a58004d1ac"},{"name":"Get all resources that have at least one explicit policy defined","id":"083b0f88-ee9d-4525-a205-df23c4771acd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"

The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"

The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/authorization/resources/:resourceType/ids","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["authorization","resources",":resourceType","ids"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"64bc7934-af67-4a5a-9cd0-989439830042","type":"any","value":"Lightbox","key":"resourceType"}]}},"response":[{"id":"e48ae016-6f77-4030-94e2-257217a9402e","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.0","description":"The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"9157ae9e-25e6-b452-f01a-410b34afcbdd","description":"The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/authorization/resources/:resourceType/ids","host":["https://api.mediavalet.com"],"path":["authorization","resources",":resourceType","ids"],"variable":[{"key":"resourceType"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"resourcetype\": \"BrandedPortal\",\n \"resourceids\": [\n \"00000000-0000-0000-0000-000000000000\",\n \"00000000-0000-0000-0000-000000000000\"\n ],\n \"_links\": {\n \"self\": \"string\",\n \"functions\": [\n \"string\",\n \"string\"\n ]\n },\n \"translationKeys\": {\n \"key_0\": {},\n \"key_1\": {},\n \"key_2\": {}\n },\n \"interpolations\": {\n \"key_0\": {},\n \"key_1\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:downloadFromPortal\"\n ]\n}"}],"_postman_id":"083b0f88-ee9d-4525-a205-df23c4771acd"}],"id":"2a6c8749-a346-4371-ab76-1bcd70156f3a","_postman_id":"2a6c8749-a346-4371-ab76-1bcd70156f3a","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Categories","item":[{"name":"Retrieve Folder Assets","id":"f5fa25aa-2aaa-42ba-86ed-38526090ade1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/folders/:categoryId/assets","description":"

Returns assets that belongs to the specified category.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["folders",":categoryId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"6c152407-95d8-434a-b688-17b3e306a8d4","description":{"content":"

(Required) The category guid.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"a012fe65-6b37-4a4b-af08-e1345a380ab8","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["folders",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ex5\": \"\",\n \"est60\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"quis__f\": \"\",\n \"dolore37\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"do35\": {},\n \"veniamd64\": {}\n },\n \"interpolations\": {\n \"laboris_f4_\": {},\n \"ea_c9e\": {},\n \"pariaturd\": {},\n \"labore_8b\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"None\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ut_e\": \"\",\n \"velitc5a\": \"\",\n \"do_897\": \"\",\n \"nisi__b\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"amet_9f\": \"\",\n \"occaecatf66\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor_2\": {}\n },\n \"interpolations\": {\n \"aliqua9c\": {},\n \"deserunt_6\": {},\n \"commodo699\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"lightbox:transferOwnership\"\n ]\n }\n ]\n}"},{"id":"e2229883-6d2a-49f7-89e6-c83917ab7107","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["folders",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b04ee442-8274-4be0-82be-9f29a496d485","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["folders",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f5fa25aa-2aaa-42ba-86ed-38526090ade1"},{"name":"Retrieve Category Assets","id":"203a6c12-77a1-4302-bb6d-5eca726297bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/categories/:categoryId/assets","description":"

Returns assets that belongs to the specified category.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"dca86dd2-4a68-4ef5-8698-24f3e7ca2da5","description":{"content":"

(Required) The category guid.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"65987a9d-788c-4de4-bae8-df3dfafdca3e","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ex5\": \"\",\n \"est60\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"quis__f\": \"\",\n \"dolore37\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"do35\": {},\n \"veniamd64\": {}\n },\n \"interpolations\": {\n \"laboris_f4_\": {},\n \"ea_c9e\": {},\n \"pariaturd\": {},\n \"labore_8b\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"None\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ut_e\": \"\",\n \"velitc5a\": \"\",\n \"do_897\": \"\",\n \"nisi__b\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"amet_9f\": \"\",\n \"occaecatf66\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor_2\": {}\n },\n \"interpolations\": {\n \"aliqua9c\": {},\n \"deserunt_6\": {},\n \"commodo699\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"lightbox:transferOwnership\"\n ]\n }\n ]\n}"},{"id":"76dc475c-03c2-4961-a4c9-2ad2ee21c312","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"767a64eb-6fb9-4930-83bb-a4615fb3554a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"203a6c12-77a1-4302-bb6d-5eca726297bc"},{"name":"Retrieve Category Assets Basic Information","id":"30b26efb-0abd-44a7-932c-ffd765d534d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/categories/:categoryId/assets/basic","description":"

Returns assets that belongs to the specified category.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryId","assets","basic"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"4e0a1ec4-d70a-4af3-a99e-f3a789c719bf","description":{"content":"

(Required) The category guid.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"9cfa0fd2-f95b-45af-be2c-7f08abe205be","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/assets/basic","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","assets","basic"],"variable":[{"key":"categoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"checkedOutBy\": \"\",\n \"status\": \"\",\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"version\": {\n \"Current\": \"\",\n \"Version\": \"\",\n \"IsLatestVersion\": \"\"\n },\n \"mediaFile\": {\n \"Title\": \"\",\n \"FileName\": \"\",\n \"Md5\": \"\",\n \"SizeInBytes\": \"\",\n \"Description\": \"\",\n \"UploadedAt\": \"\",\n \"ModifiedAt\": \"\",\n \"ImageHeight\": \"\",\n \"ImageWidth\": \"\",\n \"MimeType\": \"\",\n \"ColorMode\": \"\",\n \"Thumb\": \"\",\n \"Medium\": \"\",\n \"Download\": \"\"\n },\n \"categoryIds\": [\n \"\",\n \"\"\n ],\n \"categoryNames\": [\n \"\",\n \"\"\n ],\n \"metadataInfo\": {\n \"Xmp\": [\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"Colors\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"irure_d\": {},\n \"eu_54\": {}\n },\n \"interpolations\": {\n \"deserunt40\": {},\n \"est_b40\": {},\n \"fugiat_8_\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:shareAsWebGallery\"\n ]\n },\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"Other\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ullamco_2\": {},\n \"ullamco_4a0\": {},\n \"mollit01\": {},\n \"tempor_9\": {}\n },\n \"interpolations\": {\n \"sint_272\": {},\n \"Excepteur3\": {},\n \"velit_d2\": {},\n \"cupidatat5b8\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:share\"\n ]\n }\n ],\n \"Exif\": [\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"IccProfile\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"velit77\": {}\n },\n \"interpolations\": {\n \"aute9\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"brandedPortal:view\"\n ]\n },\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"Xml\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sinta_a\": {},\n \"nisi_73\": {}\n },\n \"interpolations\": {\n \"occaecatb3f\": {},\n \"in_41\": {},\n \"ullamcoac8\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"asset:shareAsLink\"\n ]\n }\n ],\n \"Iptc\": [\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"QuickTime\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"aliquip_1\": {},\n \"eiusmod_29_\": {},\n \"do8c\": {}\n },\n \"interpolations\": {\n \"sit08\": {},\n \"esse_3\": {},\n \"Duis_189\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"asset:downloadFromMvd\"\n ]\n },\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"OrgMetaData\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor_483\": {}\n },\n \"interpolations\": {\n \"ut3ff\": {},\n \"ex_a\": {},\n \"aliquip1\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"lightbox:transferOwnership\"\n ]\n }\n ]\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"voluptate_c3b\": {},\n \"minim6\": {}\n },\n \"interpolations\": {\n \"aliquip_62\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:share\"\n ]\n },\n {\n \"id\": \"\",\n \"checkedOutBy\": \"\",\n \"status\": \"\",\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"version\": {\n \"Current\": \"\",\n \"Version\": \"\",\n \"IsLatestVersion\": \"\"\n },\n \"mediaFile\": {\n \"Title\": \"\",\n \"FileName\": \"\",\n \"Md5\": \"\",\n \"SizeInBytes\": \"\",\n \"Description\": \"\",\n \"UploadedAt\": \"\",\n \"ModifiedAt\": \"\",\n \"ImageHeight\": \"\",\n \"ImageWidth\": \"\",\n \"MimeType\": \"\",\n \"ColorMode\": \"\",\n \"Thumb\": \"\",\n \"Medium\": \"\",\n \"Download\": \"\"\n },\n \"categoryIds\": [\n \"\",\n \"\"\n ],\n \"categoryNames\": [\n \"\",\n \"\"\n ],\n \"metadataInfo\": {\n \"Xmp\": [\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"Photoshop\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"incididunt14\": {},\n \"dolore_2\": {}\n },\n \"interpolations\": {\n \"dolor_d\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:editDetails\"\n ]\n },\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"File\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sint_f\": {}\n },\n \"interpolations\": {\n \"sunt997\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"asset:createVideoClip\"\n ]\n }\n ],\n \"Exif\": [\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"Exif\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"officia_24\": {},\n \"dolor7\": {},\n \"dolor_5a\": {}\n },\n \"interpolations\": {\n \"non_e\": {},\n \"deserunt_24e\": {},\n \"dolore_e8\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"None\"\n ]\n },\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"QuickTime\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"incididuntca\": {},\n \"incididunt__d6\": {},\n \"mollit_6\": {}\n },\n \"interpolations\": {\n \"idfc5\": {},\n \"dolor_df\": {},\n \"veniam_0\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLightbox\"\n ]\n }\n ],\n \"Iptc\": [\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"Other\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"velit_e2\": {},\n \"in4df\": {},\n \"quis_0d\": {}\n },\n \"interpolations\": {\n \"laborum_567\": {},\n \"sit3e4\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"asset:shareAsWebGallery\"\n ]\n },\n {\n \"propertyId\": \"\",\n \"entityObjectId\": \"\",\n \"tagGroup\": \"Iptc\",\n \"propertyName\": \"\",\n \"propertyValue\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consectetur_09d\": {}\n },\n \"interpolations\": {\n \"quis5c8\": {},\n \"enim_2\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"lightbox:share\"\n ]\n }\n ]\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"Excepteur4ac\": {},\n \"eiusmode78\": {},\n \"dolor_12\": {},\n \"quis28\": {}\n },\n \"interpolations\": {\n \"proident7b\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:createImageCrop\"\n ]\n }\n ]\n}"},{"id":"d0322500-30db-43f2-947c-14a3ffc16321","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/assets/basic","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","assets","basic"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"832e4939-b185-486f-b6cf-f86f4d65783c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/assets/basic","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","assets","basic"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"30b26efb-0abd-44a7-932c-ffd765d534d5"},{"name":"Retrieve Categories","id":"0e8b7e78-efab-4be7-bec5-366cf52ecc4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/categories?includePermissions=false","description":"

Returns list of categories for the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Query param: Returns CLP permissions

\n","type":"text/plain"},"key":"includePermissions","value":"false"}],"variable":[]}},"response":[{"id":"4ec7f0d9-b447-4e5e-a64b-ad99bb672997","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/categories?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Returns CLP permissions"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"container\": {\n \"id\": \"\",\n \"type\": \"\"\n },\n \"parentId\": \"\",\n \"description\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subcats\": {\n \"total\": \"\"\n },\n \"assetCount\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"subfolderCount\": \"\",\n \"name\": \"\",\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sunt_5bc\": {}\n },\n \"interpolations\": {\n \"laborisca\": {},\n \"Ut99\": {},\n \"qui02d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"id\": \"\",\n \"container\": {\n \"id\": \"\",\n \"type\": \"\"\n },\n \"parentId\": \"\",\n \"description\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subcats\": {\n \"total\": \"\"\n },\n \"assetCount\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"subfolderCount\": \"\",\n \"name\": \"\",\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"mollited7\": {},\n \"suntce\": {},\n \"ea3ef\": {}\n },\n \"interpolations\": {\n \"veniam_\": {},\n \"elit_3\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"lightbox:viewAsset\"\n ]\n }\n]"},{"id":"b6913f21-30b3-421f-af34-f58a8fd50199","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Returns CLP permissions"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"75bf2509-a183-47c7-a13e-eb6088a53f1b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Returns CLP permissions"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0e8b7e78-efab-4be7-bec5-366cf52ecc4f"},{"name":"Create Category","id":"03c85108-3c64-4eed-9ac8-8dd88c1a50c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/categories?includePermissions=false","description":"

Creates a category in the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Query param: Return CLP permissions

\n","type":"text/plain"},"key":"includePermissions","value":"false"}],"variable":[]}},"response":[{"id":"f09f0770-3cb6-4b4a-9932-aabe54b041ff","name":"The category was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"reprehenderit_f24\": {},\n \"reprehenderit_0c0\": {},\n \"quis_2\": {}\n },\n \"interpolations\": {\n \"laborumacf\": {},\n \"ad0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"b9ab7e4a-f2de-4b5b-9e70-5810afe8fc33","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"67974e0a-1116-40dd-a653-bd9680fec646","name":"The current user is not authorized to execute this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c1aef692-1f67-48cc-8025-c146eb7c8e84","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cdc35ba0-cbc5-427e-9231-a067492a9004","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"03c85108-3c64-4eed-9ac8-8dd88c1a50c5"},{"name":"Retrieve Root Sub Categories","id":"6dc442f4-acc2-4b7a-81ae-4e413188c2c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/categories/subcategories?categoryFeatures=","description":"

Returns the sub categories that belongs to the specified category.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories","subcategories"],"host":["https://api.mediavalet.com"],"query":[{"key":"categoryFeatures","value":""}],"variable":[]}},"response":[{"id":"ac788206-b5db-4bf2-bde3-23071f811d75","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/categories/subcategories?categoryFeatures=","host":["https://api.mediavalet.com"],"path":["categories","subcategories"],"query":[{"key":"categoryFeatures","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"container\": {\n \"id\": \"\",\n \"type\": \"\"\n },\n \"parentId\": \"\",\n \"description\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subcats\": {\n \"total\": \"\"\n },\n \"assetCount\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"subfolderCount\": \"\",\n \"name\": \"\",\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sunt_5bc\": {}\n },\n \"interpolations\": {\n \"laborisca\": {},\n \"Ut99\": {},\n \"qui02d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"id\": \"\",\n \"container\": {\n \"id\": \"\",\n \"type\": \"\"\n },\n \"parentId\": \"\",\n \"description\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subcats\": {\n \"total\": \"\"\n },\n \"assetCount\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"subfolderCount\": \"\",\n \"name\": \"\",\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"mollited7\": {},\n \"suntce\": {},\n \"ea3ef\": {}\n },\n \"interpolations\": {\n \"veniam_\": {},\n \"elit_3\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"lightbox:viewAsset\"\n ]\n }\n]"},{"id":"ca7ede17-a6a7-4b92-b79f-c691a2ae8ec2","name":"A category was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/subcategories?categoryFeatures=","host":["https://api.mediavalet.com"],"path":["categories","subcategories"],"query":[{"key":"categoryFeatures","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c85cae30-4e4e-4a4e-b3db-f2dfe5bd93af","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/subcategories?categoryFeatures=","host":["https://api.mediavalet.com"],"path":["categories","subcategories"],"query":[{"key":"categoryFeatures","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3ff82e0b-2fa5-4adb-9371-e1119b263ec0","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/subcategories?categoryFeatures=","host":["https://api.mediavalet.com"],"path":["categories","subcategories"],"query":[{"key":"categoryFeatures","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6dc442f4-acc2-4b7a-81ae-4e413188c2c9"},{"name":"Retrieve Folders","id":"97744db8-1b5a-448a-a0b7-920c706075ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/folders/:categoryGuid?includePermissions=false","description":"

Returns detailed information on a specific folders based on guid.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["folders",":categoryGuid"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Query param: Return CLP permissions

\n","type":"text/plain"},"key":"includePermissions","value":"false"}],"variable":[{"id":"91e5bbaf-5551-4abf-9f4e-ab48788241c8","description":{"content":"

(Required) The category guid.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryGuid"}]}},"response":[{"id":"136d2480-7731-4cb9-a4af-efd24409f9e9","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryGuid?includePermissions=false","host":["https://api.mediavalet.com"],"path":["folders",":categoryGuid"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"reprehenderit_f24\": {},\n \"reprehenderit_0c0\": {},\n \"quis_2\": {}\n },\n \"interpolations\": {\n \"laborumacf\": {},\n \"ad0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"67cd0b7e-7022-4c37-98ff-29d36ff4af7a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryGuid?includePermissions=false","host":["https://api.mediavalet.com"],"path":["folders",":categoryGuid"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e3b28db9-50b9-43e9-99ca-5cc959f33db5","name":"The category was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryGuid?includePermissions=false","host":["https://api.mediavalet.com"],"path":["folders",":categoryGuid"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6a9ee5fc-d36b-4bfe-850b-d414b53e783c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryGuid?includePermissions=false","host":["https://api.mediavalet.com"],"path":["folders",":categoryGuid"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"97744db8-1b5a-448a-a0b7-920c706075ed"},{"name":"Retrieve Category","id":"7d1e293d-8a84-44c3-a4a7-426dd9dd759f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/categories/:categoryGuid?includePermissions=false","description":"

Returns detailed information on a specific category based on guid.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryGuid"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Query param: Return CLP permissions

\n","type":"text/plain"},"key":"includePermissions","value":"false"}],"variable":[{"id":"45a96bc2-041a-4269-8d68-65c16d9489d7","description":{"content":"

(Required) The category guid.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryGuid"}]}},"response":[{"id":"1529bb9e-d24e-4994-a844-77897ed209ef","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryGuid?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories",":categoryGuid"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"reprehenderit_f24\": {},\n \"reprehenderit_0c0\": {},\n \"quis_2\": {}\n },\n \"interpolations\": {\n \"laborumacf\": {},\n \"ad0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"3b16d67b-d6e5-47fc-8242-2661cdd8a1ac","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryGuid?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories",":categoryGuid"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"451b55cf-ed28-45cf-97f5-52af2d9165ea","name":"The category was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryGuid?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories",":categoryGuid"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"79b98ff1-c783-4baa-8f9c-fb31c8f0e0ae","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryGuid?includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories",":categoryGuid"],"query":[{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7d1e293d-8a84-44c3-a4a7-426dd9dd759f"},{"name":"Retrieve Root Folders","id":"d999831f-8101-4f23-b01c-0c0ae27c59f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/folders?includePinnedSearches=false&includePermissions=true","description":"

Returns list of root folders for the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["folders"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

The boolean indicator to include pinned saved searches.

\n","type":"text/plain"},"key":"includePinnedSearches","value":"false"},{"description":{"content":"

Query parameter: Return CLP permissions

\n","type":"text/plain"},"key":"includePermissions","value":"true"}],"variable":[]}},"response":[{"id":"c5a78966-fcf2-4a19-81ca-5b57020d1822","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/folders?includePinnedSearches=false&includePermissions=true","host":["https://api.mediavalet.com"],"path":["folders"],"query":[{"key":"includePinnedSearches","value":"false","description":"The boolean indicator to include pinned saved searches."},{"key":"includePermissions","value":"true","description":"Query parameter: Return CLP permissions"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"incididuntf8\": {}\n },\n \"interpolations\": {\n \"est_c17\": {},\n \"sed8\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:downloadFromMvd\"\n ]\n },\n {\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"voluptate__\": {},\n \"dolore6\": {},\n \"sedd7b\": {}\n },\n \"interpolations\": {\n \"cupidatat_f1e\": {},\n \"sit_e\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"0d8e4cf6-12b2-45cf-bb7e-e047a1217dec","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/folders?includePinnedSearches=false&includePermissions=true","host":["https://api.mediavalet.com"],"path":["folders"],"query":[{"key":"includePinnedSearches","value":"false","description":"The boolean indicator to include pinned saved searches."},{"key":"includePermissions","value":"true","description":"Query parameter: Return CLP permissions"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a265c3ae-a371-482e-8df7-f3071cc9d054","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/folders?includePinnedSearches=false&includePermissions=true","host":["https://api.mediavalet.com"],"path":["folders"],"query":[{"key":"includePinnedSearches","value":"false","description":"The boolean indicator to include pinned saved searches."},{"key":"includePermissions","value":"true","description":"Query parameter: Return CLP permissions"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d999831f-8101-4f23-b01c-0c0ae27c59f0"},{"name":"Create Folder","id":"e1d35461-2dbf-4c71-b9e3-b914595ba1fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/folders","description":"

Creates a folder in the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["folders"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"834f605b-4c7d-4abf-8624-1636049aa970","name":"The category was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/folders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"reprehenderit_f24\": {},\n \"reprehenderit_0c0\": {},\n \"quis_2\": {}\n },\n \"interpolations\": {\n \"laborumacf\": {},\n \"ad0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"06170bcb-6816-444d-9c44-56125ed13ce8","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/folders"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"99d68d69-3cb1-40c2-a33b-6d86ff6bd19b","name":"The current user is not authorized to execute this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/folders"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0ccc3341-a941-48af-9aaa-8c121aeb004b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/folders"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2b4f9da1-e37b-4e00-b9b8-eed1d9e00896","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"parentId\": \"\",\n \"description\": \"\",\n \"treeName\": \"\",\n \"categoryId\": \"\",\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"CategoryCreation\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/folders"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e1d35461-2dbf-4c71-b9e3-b914595ba1fa"},{"name":"Retrieve Sub Folders","id":"c7067cf8-4981-4487-8371-cb6980d2ea0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/folders/:categoryGuid/subfolders?categoryFeatures=&includePermissions=false","description":"

Returns list of subfolders based on parent category guid.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["folders",":categoryGuid","subfolders"],"host":["https://api.mediavalet.com"],"query":[{"key":"categoryFeatures","value":""},{"description":{"content":"

Query param: Return CLP permissions

\n","type":"text/plain"},"key":"includePermissions","value":"false"}],"variable":[{"id":"15a2118f-c829-4ff9-8569-88563a4f7572","description":{"content":"

(Required) Parent category guid.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryGuid"}]}},"response":[{"id":"a5e9b2ea-d985-4ceb-b912-bff0ad7862ab","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryGuid/subfolders?categoryFeatures=&includePermissions=false","host":["https://api.mediavalet.com"],"path":["folders",":categoryGuid","subfolders"],"query":[{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"incididuntf8\": {}\n },\n \"interpolations\": {\n \"est_c17\": {},\n \"sed8\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:downloadFromMvd\"\n ]\n },\n {\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"voluptate__\": {},\n \"dolore6\": {},\n \"sedd7b\": {}\n },\n \"interpolations\": {\n \"cupidatat_f1e\": {},\n \"sit_e\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"27ccc049-fdea-476f-89fc-308e102a5742","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryGuid/subfolders?categoryFeatures=&includePermissions=false","host":["https://api.mediavalet.com"],"path":["folders",":categoryGuid","subfolders"],"query":[{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f153fe07-82fb-42a5-bb87-c73eb5725579","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/folders/:categoryGuid/subfolders?categoryFeatures=&includePermissions=false","host":["https://api.mediavalet.com"],"path":["folders",":categoryGuid","subfolders"],"query":[{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c7067cf8-4981-4487-8371-cb6980d2ea0d"},{"name":"Retrieve Sub Categories","id":"58bb31ee-aed6-4e84-99ad-5942acd6135e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/categories/:categoryGuid/subcategories?categoryFeatures=&includePermissions=false","description":"

Returns list of subcategories based on parent category guid.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryGuid","subcategories"],"host":["https://api.mediavalet.com"],"query":[{"key":"categoryFeatures","value":""},{"description":{"content":"

Query param: Return CLP permissions

\n","type":"text/plain"},"key":"includePermissions","value":"false"}],"variable":[{"id":"d28d19b8-4f38-4148-8ca1-2c3223ddbdae","description":{"content":"

(Required) Parent category guid.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryGuid"}]}},"response":[{"id":"5aa08b6f-f021-450e-80b7-ece72938330b","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryGuid/subcategories?categoryFeatures=&includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories",":categoryGuid","subcategories"],"query":[{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"container\": {\n \"id\": \"\",\n \"type\": \"\"\n },\n \"parentId\": \"\",\n \"description\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subcats\": {\n \"total\": \"\"\n },\n \"assetCount\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"subfolderCount\": \"\",\n \"name\": \"\",\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sunt_5bc\": {}\n },\n \"interpolations\": {\n \"laborisca\": {},\n \"Ut99\": {},\n \"qui02d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"id\": \"\",\n \"container\": {\n \"id\": \"\",\n \"type\": \"\"\n },\n \"parentId\": \"\",\n \"description\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subcats\": {\n \"total\": \"\"\n },\n \"assetCount\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"subfolderCount\": \"\",\n \"name\": \"\",\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"mollited7\": {},\n \"suntce\": {},\n \"ea3ef\": {}\n },\n \"interpolations\": {\n \"veniam_\": {},\n \"elit_3\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"lightbox:viewAsset\"\n ]\n }\n]"},{"id":"d389eee1-1f72-4372-b2c2-3548227e24b6","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryGuid/subcategories?categoryFeatures=&includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories",":categoryGuid","subcategories"],"query":[{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0dc91115-8dde-49ed-a70e-05b74e029ff3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryGuid/subcategories?categoryFeatures=&includePermissions=false","host":["https://api.mediavalet.com"],"path":["categories",":categoryGuid","subcategories"],"query":[{"key":"categoryFeatures","value":""},{"key":"includePermissions","value":"false","description":"Query param: Return CLP permissions"}],"variable":[{"key":"categoryGuid"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"58bb31ee-aed6-4e84-99ad-5942acd6135e"},{"name":"Create Permission Set","id":"0834b0d2-97a1-4899-a764-f2a2183675d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"permissionSetId\": \"\",\n \"name\": \"\",\n \"assetPermissions\": [\n \"\",\n \"\"\n ],\n \"createdBy\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/categories/permissionSets","description":"

Creates a permission set in the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories","permissionSets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"489c3aae-4b7d-4e7b-8483-c589d03c42c3","name":"The permission set was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"permissionSetId\": \"\",\n \"name\": \"\",\n \"assetPermissions\": [\n \"\",\n \"\"\n ],\n \"createdBy\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/categories/permissionSets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"permissionSetId\": \"\",\n \"name\": \"\",\n \"assetPermissions\": [\n \"\",\n \"\"\n ],\n \"createdBy\": \"\"\n}"},{"id":"d9f67a44-7dbd-4024-bce0-fed55e0d165d","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"permissionSetId\": \"\",\n \"name\": \"\",\n \"assetPermissions\": [\n \"\",\n \"\"\n ],\n \"createdBy\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/categories/permissionSets"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c5a43e1c-d6eb-4573-b0a8-b3137baed3da","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"permissionSetId\": \"\",\n \"name\": \"\",\n \"assetPermissions\": [\n \"\",\n \"\"\n ],\n \"createdBy\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/categories/permissionSets"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"872dc330-12be-47ea-82c0-48d319af22ef","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"permissionSetId\": \"\",\n \"name\": \"\",\n \"assetPermissions\": [\n \"\",\n \"\"\n ],\n \"createdBy\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/categories/permissionSets"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0834b0d2-97a1-4899-a764-f2a2183675d2"},{"name":"Create User Group Association With Category","id":"281b9a92-ec98-4eff-b7f7-da39293696ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"CategoryId\": \"\",\n \"UserGroupId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/categories/:categoryId/userGroups","description":"

Assigns the user group to a category.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryId","userGroups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"1160358b-c345-41c7-995f-cecb1ab06e5f","description":{"content":"

(Required) Guid of the category to which we are assigning user group.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"91346ce2-dc06-46b9-85b7-d94c8fc84b4d","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"CategoryId\": \"\",\n \"UserGroupId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups"],"variable":[{"key":"categoryId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1dea3925-2751-471b-8e86-3e6f8e11a72c","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"CategoryId\": \"\",\n \"UserGroupId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups"],"variable":[{"key":"categoryId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"07118a5a-6d57-4a63-aa04-a10dc74219a2","name":"The current user is not authorized to execute this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"CategoryId\": \"\",\n \"UserGroupId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups"],"variable":[{"key":"categoryId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6ebffa1e-71b9-469c-bf3a-d10cc3689e4a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"CategoryId\": \"\",\n \"UserGroupId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a5eb81de-6d46-4b7b-a249-084825414cff","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"CategoryId\": \"\",\n \"UserGroupId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"281b9a92-ec98-4eff-b7f7-da39293696ff"},{"name":"Update Folder","id":"b3925db6-c075-45cf-b636-93a0481194ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/folders/:categoryId","description":"

Updates a folder in a library by renaming or moving its parent category.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["folders",":categoryId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"587f079a-2894-454d-b655-9d9b8263332c","description":{"content":"

(Required) The guid of the category being updated.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"34a80895-6e0c-4fd4-86e5-997ef8f57f49","name":"Request was accepted.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/folders/:categoryId","host":["https://api.mediavalet.com"],"path":["folders",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"reprehenderit_f24\": {},\n \"reprehenderit_0c0\": {},\n \"quis_2\": {}\n },\n \"interpolations\": {\n \"laborumacf\": {},\n \"ad0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"ee378aca-eb53-4134-b886-aab3af79234e","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/folders/:categoryId","host":["https://api.mediavalet.com"],"path":["folders",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b98ec2c9-5925-41d0-9e07-9a5026b93fba","name":"The current user is not authorized to execute this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/folders/:categoryId","host":["https://api.mediavalet.com"],"path":["folders",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a44ce855-8f5d-4e89-82f1-8cde750796cf","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/folders/:categoryId","host":["https://api.mediavalet.com"],"path":["folders",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ef959e16-9d97-48b5-945a-e894823f8f69","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/folders/:categoryId","host":["https://api.mediavalet.com"],"path":["folders",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b3925db6-c075-45cf-b636-93a0481194ca"},{"name":"Remove Category","id":"abff9bc4-0a76-487f-8be7-34d2b8eaff06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/categories/:categoryId","description":"

Deletes a category in the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"0b610c0f-e387-46eb-ba76-7419de075afc","description":{"content":"

(Required) The guid of the category being deleted.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"1061eecb-78da-4cb2-9ead-c6f3a31f3165","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1be21807-74ff-4974-933c-0204c318b5f1","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"86ae9e13-1370-4d2c-bc80-4d69c80996b5","name":"The current user is not authorized to execute this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a5d606ee-e77c-4ae9-b086-67a79f9050ac","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c4ec62e7-ffeb-4ddd-a8e4-8d03c6596ddd","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"abff9bc4-0a76-487f-8be7-34d2b8eaff06"},{"name":"Update Category","id":"424f29e7-a83b-4821-98df-5c0cee8cb210","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/categories/:categoryId","description":"

Updates a category in a library by renaming or moving its parent category.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"3020766e-76b0-41ba-8150-6f1ab1355f17","description":{"content":"

(Required) The guid of the category being updated.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"7bcc5f34-6b63-4a72-ad8a-86013b842770","name":"Request was accepted.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"name\": \"\",\n \"assetCount\": \"\",\n \"subfolderCount\": \"\",\n \"subfolders\": [\n {\n \"value\": \"\"\n },\n {\n \"value\": \"\"\n }\n ],\n \"subcats\": {\n \"total\": \"\"\n },\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"id\": \"\",\n \"parentId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categoryFeatures\": {\n \"videoIntelligenceAutoIndex\": {\n \"enabled\": \"\",\n \"inheritToChildren\": \"\"\n }\n },\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"reprehenderit_f24\": {},\n \"reprehenderit_0c0\": {},\n \"quis_2\": {}\n },\n \"interpolations\": {\n \"laborumacf\": {},\n \"ad0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"4f61066b-8bba-43af-9a80-b0c6d3bace9c","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"249fbb4a-9a02-4838-8922-e5e1332288f1","name":"The current user is not authorized to execute this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"69adaafe-9e78-4cf4-a11e-6e0898f82e98","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b3260710-6a21-48c6-ab65-78dd25cf85a6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/categories/:categoryId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"424f29e7-a83b-4821-98df-5c0cee8cb210"},{"name":"Remove User Group From Category","id":"0f463841-c60e-422e-9f3b-33eaabfb715c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/categories/:categoryId/userGroups/:userGroupId","description":"

Unassign the user group permissions from a category.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryId","userGroups",":userGroupId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"47269b73-84c0-4cd8-957e-76987b81467b","description":{"content":"

(Required) The category id.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"},{"id":"7443327b-3e79-4062-9e93-74a05de787a1","description":{"content":"

(Required) The user group id.

\n","type":"text/plain"},"type":"any","value":"","key":"userGroupId"}]}},"response":[{"id":"48fc40a3-687d-46c5-afad-958e47fa723e","name":"Request was accepted.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups/:userGroupId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups",":userGroupId"],"variable":[{"key":"categoryId"},{"key":"userGroupId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8103bdd8-923a-450a-b24c-ead37074a57e","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups/:userGroupId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups",":userGroupId"],"variable":[{"key":"categoryId"},{"key":"userGroupId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ac99e4c4-254e-46dd-95fe-69e9f1d90528","name":"The current user is not authorized to execute this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups/:userGroupId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups",":userGroupId"],"variable":[{"key":"categoryId"},{"key":"userGroupId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c2f47d16-ea5a-44c1-8c91-b5995f598f7d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups/:userGroupId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups",":userGroupId"],"variable":[{"key":"categoryId"},{"key":"userGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8daab9df-de0f-45d5-a727-8f10c1a2e246","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/userGroups/:userGroupId","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","userGroups",":userGroupId"],"variable":[{"key":"categoryId"},{"key":"userGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0f463841-c60e-422e-9f3b-33eaabfb715c"}],"id":"1583aab1-8913-4194-be35-44be73d39336","_postman_id":"1583aab1-8913-4194-be35-44be73d39336","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Config","item":[{"name":"Retrieve Cognitive Configuration","id":"e626364d-5989-455e-b463-8c2707e7abd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/config/cognitive","description":"

Retrieves the configuration for Cognitive Tags.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["config","cognitive"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"4a1c1eab-1a93-4cd0-8700-5f1041fed455","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/config/cognitive"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"renditionKindId\": \"\",\n \"code\": \"\",\n \"description\": \"\",\n \"height\": \"\",\n \"isDefault\": \"\",\n \"mimeType\": \"\",\n \"name\": \"\",\n \"quality\": \"\",\n \"targetFileExtension\": \"\",\n \"width\": \"\",\n \"colorspace\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consectetur9de\": {},\n \"ex_f32\": {}\n },\n \"interpolations\": {\n \"labore16f\": {},\n \"dolor5\": {},\n \"amet38d\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"user:editEmail\"\n ]\n },\n {\n \"renditionKindId\": \"\",\n \"code\": \"\",\n \"description\": \"\",\n \"height\": \"\",\n \"isDefault\": \"\",\n \"mimeType\": \"\",\n \"name\": \"\",\n \"quality\": \"\",\n \"targetFileExtension\": \"\",\n \"width\": \"\",\n \"colorspace\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"veniam_25c\": {},\n \"qui__ec\": {},\n \"mollit_c\": {}\n },\n \"interpolations\": {\n \"sit_36d\": {},\n \"laborumf4\": {},\n \"quis_1\": {},\n \"nulla56\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"12223e45-bf30-4e28-88fa-37f430708702","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/config/cognitive"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2b8f07c9-bd3e-4c90-96bf-9e7bdbc73215","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/config/cognitive"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e626364d-5989-455e-b463-8c2707e7abd5"},{"name":"Retrieve Rendition Kinds","id":"dfa6b717-5318-4511-b030-cd0dcd811a86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/config/renditionkinds","description":"

Retrieves the supported rendition kinds.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["config","renditionkinds"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"a3669e79-e3c2-4a92-9315-de45f09ddf0e","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/config/renditionkinds"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"renditionKindId\": \"\",\n \"code\": \"\",\n \"description\": \"\",\n \"height\": \"\",\n \"isDefault\": \"\",\n \"mimeType\": \"\",\n \"name\": \"\",\n \"quality\": \"\",\n \"targetFileExtension\": \"\",\n \"width\": \"\",\n \"colorspace\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consectetur9de\": {},\n \"ex_f32\": {}\n },\n \"interpolations\": {\n \"labore16f\": {},\n \"dolor5\": {},\n \"amet38d\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"user:editEmail\"\n ]\n },\n {\n \"renditionKindId\": \"\",\n \"code\": \"\",\n \"description\": \"\",\n \"height\": \"\",\n \"isDefault\": \"\",\n \"mimeType\": \"\",\n \"name\": \"\",\n \"quality\": \"\",\n \"targetFileExtension\": \"\",\n \"width\": \"\",\n \"colorspace\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"veniam_25c\": {},\n \"qui__ec\": {},\n \"mollit_c\": {}\n },\n \"interpolations\": {\n \"sit_36d\": {},\n \"laborumf4\": {},\n \"quis_1\": {},\n \"nulla56\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"3e6d0ffc-3c5c-4aa7-afe5-5f453e151568","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/config/renditionkinds"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"73b10597-3f8f-4819-a985-4112b9d6a26a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/config/renditionkinds"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dfa6b717-5318-4511-b030-cd0dcd811a86"}],"id":"6d1fd2e2-cd0b-45f1-ac30-6c54d66da185","_postman_id":"6d1fd2e2-cd0b-45f1-ac30-6c54d66da185","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Crop","item":[{"name":"Retrieve Crop","id":"011481f0-d721-4876-97d0-79a16b18c7b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/crop/:cropId","description":"

Retrieve the crop image url.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["crop",":cropId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"647aa658-0bad-44b8-afd7-310bea66ec26","description":{"content":"

(Required) The crop id.

\n","type":"text/plain"},"type":"any","value":"","key":"cropId"}]}},"response":[{"id":"3ebd8817-4d2d-4300-8f7e-55e46e3ac0a4","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/crop/:cropId","host":["https://api.mediavalet.com"],"path":["crop",":cropId"],"variable":[{"key":"cropId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"croppedImageUrl\": \"\",\n \"CropId\": \"\",\n \"AssetId\": \"\",\n \"CreatedDateTime\": \"\",\n \"Height\": \"\",\n \"Width\": \"\",\n \"TemplateName\": \"\",\n \"Ratio\": \"\",\n \"TemplateId\": \"\"\n}"},{"id":"1481d6ae-8002-4f6e-92c7-6a70095edadb","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/crop/:cropId","host":["https://api.mediavalet.com"],"path":["crop",":cropId"],"variable":[{"key":"cropId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"611467e1-6cac-4167-b854-3cb8645e9c1a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/crop/:cropId","host":["https://api.mediavalet.com"],"path":["crop",":cropId"],"variable":[{"key":"cropId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"75c8d577-ac02-4f99-ad6e-8134b973c293","name":"The crop was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/crop/:cropId","host":["https://api.mediavalet.com"],"path":["crop",":cropId"],"variable":[{"key":"cropId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e47ae3c7-87ea-4407-b7c5-0b817006afbf","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/crop/:cropId","host":["https://api.mediavalet.com"],"path":["crop",":cropId"],"variable":[{"key":"cropId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"011481f0-d721-4876-97d0-79a16b18c7b5"},{"name":"Retrieve Crop Templates","id":"3aa60e36-87b8-42a9-af3f-eb24db5df634","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/crop/templates","description":"

Retrieve crop templates.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["crop","templates"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"a8a687b5-cf3c-48e4-9720-ab3e1389a749","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/crop/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"elit_7d\": {},\n \"culpa_379\": {}\n },\n \"interpolations\": {\n \"minim_d5\": {}\n },\n \"permissions\": [\n \"asset:createImageCrop\",\n \"lightbox:assignAsset\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"qui_17_\": {}\n },\n \"interpolations\": {\n \"deserunt_1d3\": {},\n \"ut_71f\": {},\n \"ex_3\": {},\n \"enim_d\": {}\n },\n \"permissions\": [\n \"None\",\n \"lightbox:editDetails\"\n ]\n }\n]"},{"id":"61b78a70-6596-4f85-aab5-a8f2b20dfb1d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/crop/templates"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"33305e0a-c003-4a61-bde2-18464421f4ac","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/crop/templates"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3aa60e36-87b8-42a9-af3f-eb24db5df634"},{"name":"Create Crop Template","id":"a5017b11-028d-4ef5-ae02-0e21ed163d18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/templates","description":"

Create crop template.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["crop","templates"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"7807f748-f4cc-4a2a-a175-6bf2f6edbaf8","name":"OK","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"c1a3909c-0b50-44c6-985b-594dde01c775","name":"The crop template was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/templates"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"799dfe44-9259-43f0-b54f-1bfde7bbf942","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/templates"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0298131e-58c4-495b-80f0-da89684229e0","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/templates"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d3b405d7-a7ef-4578-8ce4-a1d82f8c8f09","name":"The crop template was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/templates"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"937688f0-b88a-48e4-8ceb-20cf0657087f","name":"Crop template with the same id or the same name, x and y already exists.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/templates"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eeb2110f-851f-4ecd-bec5-f923f70623ce","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/templates"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a5017b11-028d-4ef5-ae02-0e21ed163d18"},{"name":"Retrieve Predefined Crop Templates","id":"9b77462f-acfe-44c2-b43f-d9a3fe670158","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/crop/predefinedTemplates","description":"

Retrieve predefined crop templates.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["crop","predefinedTemplates"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"a1a77654-8f0f-4e7e-8296-a51b25460c68","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/crop/predefinedTemplates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Dimension\",\n \"x\": \"\",\n \"y\": \"\",\n \"isAddedToCustomTemplates\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"aliquipbc\": {},\n \"minima\": {},\n \"aliqua_32\": {}\n },\n \"interpolations\": {\n \"consectetur09_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:viewAsset\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isAddedToCustomTemplates\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"magnaf7\": {}\n },\n \"interpolations\": {\n \"tempor8_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n]"},{"id":"559fe1f1-594e-4fa8-8535-4be3f519538d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/crop/predefinedTemplates"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1c209b4c-6ff3-4337-83be-c78a07f56fe8","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/crop/predefinedTemplates"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9b77462f-acfe-44c2-b43f-d9a3fe670158"},{"name":"Update Crop Template","id":"419f3340-cb10-4638-a6e8-ae7966a98f35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/templates/:cropTemplateId","description":"

Update crop template.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["crop","templates",":cropTemplateId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"44e81cdf-4413-486f-9b17-a5d027159c5b","description":{"content":"

(Required) The crop template id.

\n","type":"text/plain"},"type":"any","value":"","key":"cropTemplateId"}]}},"response":[{"id":"f8586e61-46ec-44c6-a471-ec5e4f219d52","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"6bcff87f-fda1-4c69-bc5c-e4d98fd951c9","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"702d6723-a976-433f-bf3d-89cf7b74a46d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"923dbfaa-94b8-4059-a2df-4fb882e6fb90","name":"The crop template was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"76eb346a-a564-4072-8c5a-7efcc96719e5","name":"Crop template with the same id or the same name, x and y already exists.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2a7c3718-27db-4cac-8a37-7ae49d893f0e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"Ratio\",\n \"x\": \"\",\n \"y\": \"\",\n \"isPredefined\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_02\": {},\n \"officia6_\": {}\n },\n \"interpolations\": {\n \"dolordff\": {},\n \"voluptate06d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"lightbox:assignAsset\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"419f3340-cb10-4638-a6e8-ae7966a98f35"},{"name":"Remove Crop Template","id":"395b7b03-baef-47a9-bd00-8d4469d2c53a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/crop/templates/:cropTemplateId","description":"

Remove crop template.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["crop","templates",":cropTemplateId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"9f16656a-5224-4f6e-8029-9b2baef9ac08","description":{"content":"

(Required) The crop template id.

\n","type":"text/plain"},"type":"any","value":"","key":"cropTemplateId"}]}},"response":[{"id":"da8390ab-ec28-42e1-ad7c-e80dc9a46ae3","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"0d6979bf-2279-4282-89ec-37405b2756b0","name":"The crop template was removed.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"649daad2-311e-4323-8f57-1a608b0817cb","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5ed8af92-4534-444d-967c-7b45205fb5d4","name":"The crop template was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b5fd87ca-e3cc-4d4f-b6bf-4c7c6fa98585","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/crop/templates/:cropTemplateId","host":["https://api.mediavalet.com"],"path":["crop","templates",":cropTemplateId"],"variable":[{"key":"cropTemplateId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"395b7b03-baef-47a9-bd00-8d4469d2c53a"},{"name":"Create Crop","id":"d8775e73-7091-4a41-b04c-737f8d06ea4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/crop/:assetId","description":"

Create a crop image for an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["crop",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"8eff9668-d68f-4e21-a8ee-d25f45cc53f6","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"3634c134-e99f-4a8b-bf0a-02378ed85cf6","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/:assetId","host":["https://api.mediavalet.com"],"path":["crop",":assetId"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"2fe924fd-1788-4e28-828f-905ba0404502","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/:assetId","host":["https://api.mediavalet.com"],"path":["crop",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0bcefbef-5226-4c63-b7b0-6cd9ca060169","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/:assetId","host":["https://api.mediavalet.com"],"path":["crop",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eb0e9942-a486-42f7-9a2b-c4029e258ea0","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/:assetId","host":["https://api.mediavalet.com"],"path":["crop",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0063257a-91cd-4b8a-a2ec-4750654e25e1","name":"The asset was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/:assetId","host":["https://api.mediavalet.com"],"path":["crop",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f468ae2d-abfb-42e5-ab4f-a97c759d8e94","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/crop/:assetId","host":["https://api.mediavalet.com"],"path":["crop",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d8775e73-7091-4a41-b04c-737f8d06ea4b"},{"name":"Create Crop From Template","id":"1c7e0236-0c87-49a3-ae97-4f11a4056eb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"scaledWidth\": \"\",\n \"scaledHeight\": \"\",\n \"templateId\": \"\",\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/cropWithTemplate/:assetId","description":"

Create a crop image for an asset using a crop template.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["cropWithTemplate",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"8f037371-7f49-4c0c-aac7-aa06c64b8cd8","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"0c658699-d9de-46fe-85cf-b243109c0b71","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"scaledWidth\": \"\",\n \"scaledHeight\": \"\",\n \"templateId\": \"\",\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/cropWithTemplate/:assetId","host":["https://api.mediavalet.com"],"path":["cropWithTemplate",":assetId"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"552cfad6-b83c-47d5-9fd9-7799fbb22a74","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"scaledWidth\": \"\",\n \"scaledHeight\": \"\",\n \"templateId\": \"\",\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/cropWithTemplate/:assetId","host":["https://api.mediavalet.com"],"path":["cropWithTemplate",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5ca12083-9885-4458-9816-a7560241b8c7","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"scaledWidth\": \"\",\n \"scaledHeight\": \"\",\n \"templateId\": \"\",\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/cropWithTemplate/:assetId","host":["https://api.mediavalet.com"],"path":["cropWithTemplate",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"44658842-af19-4fcc-919a-0838a2e4b8e8","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"scaledWidth\": \"\",\n \"scaledHeight\": \"\",\n \"templateId\": \"\",\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/cropWithTemplate/:assetId","host":["https://api.mediavalet.com"],"path":["cropWithTemplate",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"df1cb57d-54e2-49b9-bfaf-05022e480782","name":"The asset was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"scaledWidth\": \"\",\n \"scaledHeight\": \"\",\n \"templateId\": \"\",\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/cropWithTemplate/:assetId","host":["https://api.mediavalet.com"],"path":["cropWithTemplate",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6d98c803-a7ff-4069-a2ac-9d2cd26bd16b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"scaledWidth\": \"\",\n \"scaledHeight\": \"\",\n \"templateId\": \"\",\n \"renditionType\": \"Original\",\n \"left\": \"\",\n \"top\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"ratio\": \"\",\n \"applyWatermark\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/cropWithTemplate/:assetId","host":["https://api.mediavalet.com"],"path":["cropWithTemplate",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1c7e0236-0c87-49a3-ae97-4f11a4056eb6"}],"id":"fb35d449-0812-428c-ad6d-dfdc6a4d0ca3","_postman_id":"fb35d449-0812-428c-ad6d-dfdc6a4d0ca3","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"BrandedPortals","item":[{"name":"Retrieve Branded Portals","id":"176b3a47-aa79-4823-8e21-a5253f640d3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals","description":"

Returns branded portals.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"ceb3bf25-0ffa-46aa-b43d-34e3df5c86ec","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"publicLiveUrl\": \"\",\n \"status\": \"Draft\",\n \"createdAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"hasUnpublishedChanges\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"sharedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"viewAccessGroupCount\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"cillum_ec_\": {},\n \"sunt_\": {},\n \"temporee\": {}\n },\n \"interpolations\": {\n \"quis_f\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"brandedPortal:view\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"publicLiveUrl\": \"\",\n \"status\": \"Unknown\",\n \"createdAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"hasUnpublishedChanges\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"sharedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"viewAccessGroupCount\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ea_\": {}\n },\n \"interpolations\": {\n \"do_1_\": {},\n \"veniam3ed\": {},\n \"veniam__\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"None\"\n ]\n }\n]"},{"id":"5314caca-f41b-4221-a398-b51ef4a1d75f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/brandedportals"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a48c0ca4-f27f-46f1-a268-854c9f69a8b6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/brandedportals"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"176b3a47-aa79-4823-8e21-a5253f640d3c"},{"name":"Create Branded Portal","id":"1f95e80f-b4b9-4ccc-a10b-43bdecbac982","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"pageLayout\": \"\",\n \"language\": \"FR\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals","description":"

Creates a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"ff32699a-8d94-47ca-9b59-8970ed8a8792","name":"The branded portal was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"pageLayout\": \"\",\n \"language\": \"FR\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"b26c3a1b-0f00-4e71-9a95-61feb8b6363e","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"pageLayout\": \"\",\n \"language\": \"FR\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ddb5db43-ec81-492c-909c-9a0393a615da","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"pageLayout\": \"\",\n \"language\": \"FR\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"686cd34c-7714-4619-8ee6-4b44f7cf408d","name":"Conflict has occurred. Either duplicate name or url.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"pageLayout\": \"\",\n \"language\": \"FR\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9a93ca56-83a2-407e-85c4-e3eac8e602d4","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"pageLayout\": \"\",\n \"language\": \"FR\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1f95e80f-b4b9-4ccc-a10b-43bdecbac982"},{"name":"Search Branded Portal Assets","id":"c6d585a0-686b-4f7f-b18a-a58f45f0a506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/assets","description":"

Returns assets form a search results in a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"8ab9dc28-6930-47aa-a36f-becb7829c62d","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecatc\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecat3\": [\n \"\",\n \"\"\n ],\n \"proident__\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n }\n ]\n}"},{"id":"f07a9fed-d8d5-4268-ba69-2a606da4f0b3","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/brandedportals/assets"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3b5f4eac-ec59-4aa2-ad1d-c502df9df1b8","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/brandedportals/assets"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"575b33de-12e5-45f5-884b-36ca3058a004","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/brandedportals/assets"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c6d585a0-686b-4f7f-b18a-a58f45f0a506"},{"name":"Retrieve Branded Portal","id":"786d70ec-7d71-426c-aea9-2f706ff3aeca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId","description":"

Returns a branded portal by branded portal id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"5c56b3df-300b-49ec-a82a-bb9d6e0b0fd8","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"81a26a1c-9242-4255-840a-9bcbfde09c30","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"27d24027-2a1a-4eb9-828b-973a5eabae07","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"55f75d09-de20-4bae-8949-d208440541cc","name":"A branded portal was not found. ","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7ec58160-b8a2-44c0-8b9e-44244f00db79","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"786d70ec-7d71-426c-aea9-2f706ff3aeca"},{"name":"Remove Branded Portal","id":"1b69d8bd-cb1e-4c82-8347-957de27d2e99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId","description":"

Remove a branded portal by branded portal id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"7de4ffb8-2163-45d5-aabd-06f7cc6ce7af","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"801f1b91-5aa7-4ceb-a246-06835a8bd23a","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId"],"variable":[{"key":"brandedPortalId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"85cc9574-66e4-4278-8a10-7a8dfdac7d51","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fed7e08e-8846-4434-9c0e-6cf6ffb0b0a5","name":"The branded portal was not found by the branded portal id given.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7a5d7e1c-950a-4b5b-83a6-a6d7f58ce59c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1b69d8bd-cb1e-4c82-8347-957de27d2e99"},{"name":"Retrieve Live Branded Portal","id":"9c8ca2e2-95b6-4e7c-b1d7-c6c5b443c0cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/brandedportals/:host/:path","description":"

Returns a live branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","brandedportals",":host",":path"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"15038d3a-8456-4c4c-b71a-dba8a59bd5d2","description":{"content":"

(Required) The branded portal library domain name.

\n","type":"text/plain"},"type":"any","value":"","key":"host"},{"id":"f3a5dbc3-704b-48e9-8031-6bdc8a589a14","description":{"content":"

(Required) The branded portal name in URL path.

\n","type":"text/plain"},"type":"any","value":"","key":"path"}]}},"response":[{"id":"65220efd-30c7-4883-92ac-e6e68dc971b8","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/:path","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host",":path"],"variable":[{"key":"host"},{"key":"path"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"libraryId\": \"\",\n \"version\": \"\",\n \"libraryName\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"pageLayout\": \"\",\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"EN\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"FR\",\n \"url\": \"\"\n }\n ]\n },\n \"lastPublishedAt\": \"\",\n \"defaultLogoFilePath\": \"\",\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n }\n}"},{"id":"adeaaa70-3f5e-4be1-b1f2-09004c4be42a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/:path","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host",":path"],"variable":[{"key":"host"},{"key":"path"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"49cbd170-b651-471f-8d9c-d3fe8541594f","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/:path","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host",":path"],"variable":[{"key":"host"},{"key":"path"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"55df07c8-424a-4fd3-8f8a-97f0f38f9ae3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/:path","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host",":path"],"variable":[{"key":"host"},{"key":"path"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9c8ca2e2-95b6-4e7c-b1d7-c6c5b443c0cf"},{"name":"Get all policies of a brandedportals","id":"de78914f-4069-4712-b461-ce48271d985c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","description":"

Only user with Manage Branded Portal permissions can get policies.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","policies"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"36e2972f-abd1-4a00-b38c-71046eff3eaf","description":{"content":"

(Required) The branded portals id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"f76425fa-0b10-4851-9d5b-b04ec3f4fe78","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"apiVersion\": \"\",\n \"buildVersion\": \"\",\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"errors\": [\n \"\",\n \"\"\n ],\n \"payload\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ut66\": {},\n \"ut_61f\": {},\n \"non_d_d\": {}\n },\n \"interpolations\": {\n \"laborum_93\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"None\"\n ]\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"amet3\": {}\n },\n \"interpolations\": {\n \"in387\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:shareAsLink\"\n ]\n },\n \"inherited\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"veniam0\": {},\n \"velit_4_2\": {},\n \"occaecat_9\": {}\n },\n \"interpolations\": {\n \"sintb5c\": {},\n \"commodo2\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"asset:assignCategory\"\n ]\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ad_c\": {}\n },\n \"interpolations\": {\n \"laboris_0_1\": {},\n \"Ut_6c8\": {},\n \"aute02\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"brandedPortal:view\"\n ]\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consectetur877\": {},\n \"aliquipe\": {},\n \"est_f_\": {}\n },\n \"interpolations\": {\n \"sit1\": {},\n \"Ut_44\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"asset:shareAsCdnLink\"\n ]\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor_0\": {}\n },\n \"interpolations\": {\n \"anime\": {},\n \"sunt_8e\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"asset:shareAsZippedFile\"\n ]\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"cupidatat37d\": {}\n },\n \"interpolations\": {\n \"exercitation_e\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:shareAsLightbox\"\n ]\n },\n \"inherited\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmode\": {},\n \"nisi_c\": {}\n },\n \"interpolations\": {\n \"ullamco52f\": {},\n \"adipisicing_c\": {}\n },\n \"permissions\": [\n \"asset:shareAsCdnLink\",\n \"lightbox:share\"\n ]\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"deserunt_f\": {},\n \"Utd\": {},\n \"tempor_fb\": {}\n },\n \"interpolations\": {\n \"reprehenderitb39\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLink\"\n ]\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"proident__1\": {},\n \"Excepteur__8\": {},\n \"fugiate\": {}\n },\n \"interpolations\": {\n \"aliquae6\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"asset:shareAsCdnLink\"\n ]\n }\n ],\n \"recordCount\": {\n \"totalRecordsFound\": \"\",\n \"startingRecord\": \"\",\n \"recordsReturned\": \"\"\n },\n \"meta\": {\n \"metaInformation\": {\n \"enim_8\": {},\n \"Duis5c\": {}\n },\n \"createdAt\": \"\"\n }\n}"},{"id":"d9766e92-3d50-4f72-afde-228612a5638f","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9d51cb37-f0a0-42cb-a5e8-40ea036d0e81","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a3e148aa-50f5-417b-9252-49defc01d20d","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4f013991-b5b8-4b02-985c-2ead8e532f5e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"de78914f-4069-4712-b461-ce48271d985c"},{"name":"Updates policy of branded portal","id":"73f27559-89a1-42c3-b862-efd7cc474986","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","policies"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"9381fd2a-6c96-4720-8d7e-e064a027269f","description":{"content":"

(Required) The branded portal Id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"d35c5a18-c2c4-459e-af0f-29d8a8e6dcc7","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"apiVersion\": \"\",\n \"buildVersion\": \"\",\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"errors\": [\n \"\",\n \"\"\n ],\n \"payload\": [\n {\n \"actionTypes\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"minime\": {}\n },\n \"interpolations\": {\n \"eu3_1\": {},\n \"non3\": {},\n \"eiusmod_7b\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"brandedPortal:view\"\n ]\n },\n {\n \"actionTypes\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"cupidatat2dc\": {}\n },\n \"interpolations\": {\n \"veniam_63\": {}\n },\n \"permissions\": [\n \"asset:createImageCrop\",\n \"lightbox:transferOwnership\"\n ]\n }\n ],\n \"recordCount\": {\n \"totalRecordsFound\": \"\",\n \"startingRecord\": \"\",\n \"recordsReturned\": \"\"\n },\n \"meta\": {\n \"metaInformation\": {\n \"quid_\": {},\n \"exercitation55\": {}\n },\n \"createdAt\": \"\"\n }\n}"},{"id":"0017ed41-1cb6-46f4-b0f7-e90b4b0f5b56","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e59ba23e-4c03-4e28-b923-f5fce5a6ef2c","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4dc51be0-5a47-4142-b1ed-777efb04ec20","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"dd4929f2-1827-4d77-aadb-6076f3fb3a6a","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"78d85d39-080d-4d73-ac65-91a580a3f07c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/policies","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","policies"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"73f27559-89a1-42c3-b862-efd7cc474986"},{"name":"Retrieve Branded Portal Assets By CategoryId","id":"eab87ee5-3e52-462d-b122-644198f17a4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/categories/:categoryId/assets","description":"

Returns a collection of assets by categoryId in a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals","categories",":categoryId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f7ea44e8-3406-4d40-b4de-0e33aa0a4a06","description":{"content":"

(Required) The id of the category.

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"46367697-00c1-4c45-baab-e1c469cef015","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/categories/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals","categories",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecatc\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecat3\": [\n \"\",\n \"\"\n ],\n \"proident__\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n }\n ]\n}"},{"id":"a8a99976-8d1f-4ad3-b274-73dd8549ab29","name":"Server refused the request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/categories/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals","categories",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c704dbc7-c0eb-4869-a137-8b65eea7ae0b","name":"The category was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/categories/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals","categories",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eb3734c6-4973-4781-a2bb-ce7567cce14b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/categories/:categoryId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals","categories",":categoryId","assets"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eab87ee5-3e52-462d-b122-644198f17a4a"},{"name":"Retrieve Branded Portal Assets By LightboxId","id":"56172087-3d30-4eda-8be3-9b85bf0e720c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/lightboxes/:lightboxId/assets","description":"

Returns a collection of asset by lightboxId in a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals","lightboxes",":lightboxId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"eec64f6d-b453-4102-932e-33d6dcfccb2d","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"ab36f53c-2b10-471e-8a4f-dbcedae6d3de","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals","lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecatc\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecat3\": [\n \"\",\n \"\"\n ],\n \"proident__\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n }\n ]\n}"},{"id":"ba96541a-2e72-4a6d-acbd-114bc1b3159f","name":"The current user is not authorized to view this lightbox.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals","lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3c0e8092-c007-4892-b0a5-80710b0bb9c6","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals","lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7ca98b53-2c9c-4d95-9a78-5f78641e4959","name":"The lightbox was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals","lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2e1515b4-d00d-4b38-a151-4ebc131de20c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals","lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"56172087-3d30-4eda-8be3-9b85bf0e720c"},{"name":"Retrieve Branded Portal Terms and Conditions","id":"c8135083-bd5a-4485-9e01-ea43a9df3128","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/brandedportals/:host/termsAndConditions","description":"

Returns the terms and condititons of a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","brandedportals",":host","termsAndConditions"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"861f3418-489a-46d3-9eb4-52f8f9b45eb6","description":{"content":"

(Required) The branded portal library domain name.

\n","type":"text/plain"},"type":"any","value":"","key":"host"}]}},"response":[{"id":"c5d40498-c973-4a58-b8c9-100aec7016a9","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/termsAndConditions","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host","termsAndConditions"],"variable":[{"key":"host"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"libraryName\": \"\",\n \"displayTermsAndConditions\": \"\",\n \"termsAndConditionsNotice\": \"\",\n \"termsAndConditionsUpdated\": \"\"\n}"},{"id":"b78aab1b-392d-4d5a-ad57-3e954a51e71c","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/termsAndConditions","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host","termsAndConditions"],"variable":[{"key":"host"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"68285652-8da2-4581-9c98-82fa0bbde401","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/termsAndConditions","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host","termsAndConditions"],"variable":[{"key":"host"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fc4f3f60-1dff-4409-a664-eef20a134292","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/termsAndConditions","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host","termsAndConditions"],"variable":[{"key":"host"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c8135083-bd5a-4485-9e01-ea43a9df3128"},{"name":"Get branded portal section sync details","id":"9a8c2d28-7ab9-4a3b-b0d5-275cf2c6e4c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","description":"

Return branded portal section sync details

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"762acff6-5f0d-4c84-bfff-1167c064fcf1","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"0b1bdc1a-ffae-4ffc-ab8f-f710b7e0e238","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"9c7570e9-c7a0-4d8b-9d9c-d7517712d57d","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"brandedPortalId\": \"\",\n \"versionId\": \"\",\n \"sectionId\": \"\",\n \"syncType\": \"Category\",\n \"categoryId\": \"\",\n \"lightboxId\": \"\",\n \"name\": \"\",\n \"treePath\": \"\",\n \"treeIdPath\": \"\"\n}"},{"id":"e19ce52c-5e85-4c1d-ba6f-1d9282085e40","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1bace68d-55e0-4a80-a981-77ae1a182e1f","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"11f2ced9-d9e7-4b25-9a5e-f158a12d3a9e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9a8c2d28-7ab9-4a3b-b0d5-275cf2c6e4c5"},{"name":"Create section sync","id":"6713b983-cd84-4fa1-8720-58a7bab8ef1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","description":"

Sync Branded Portal section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"8aac5d93-5a72-4955-b530-71d4ded47eb5","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"50090f1b-0f45-492d-a7c0-37727c22be9c","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"9f81ec14-4110-4b87-b1a5-2882946b6f16","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2ce95fa3-2c1e-459e-8e9a-5b2f0f74372d","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7680cb13-4df2-47ae-8ac5-68db413ee050","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"86eb8a4a-13bc-497b-89d8-e430255d9479","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"143587d5-e042-424a-823c-4b7468fde37e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/sync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","sync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6713b983-cd84-4fa1-8720-58a7bab8ef1c"},{"name":"Retrieve Branded Portal Access Key","id":"6a5c1966-2d17-4bdf-bdd5-0db7364df736","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/accesskey","description":"

Returns a branded portal access key.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","settings","accesskey"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"136993e1-395a-4c0b-a154-35e79487aaa6","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"e530de6f-ac47-478f-906a-5fcbcf61cfd2","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/accesskey","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","accesskey"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"b23af0a9-e016-4517-ada3-2280fa73548e","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/accesskey","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","accesskey"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5102648c-5425-4824-a89f-b5a1c41b5630","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/accesskey","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","accesskey"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"663278c7-8682-4bdb-a071-340ce062b0f1","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/accesskey","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","accesskey"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6a5c1966-2d17-4bdf-bdd5-0db7364df736"},{"name":"Search Branded Portal Draft Assets","id":"02eb49ba-29d2-4099-90a5-ba33d628fa1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets?preview=false","description":"

Returns search results from branded portal draft assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","assets"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

The flag used to show fully ingested assets.

\n","type":"text/plain"},"key":"preview","value":"false"}],"variable":[{"id":"f4707756-1872-4503-a90f-ee8dc8ef079a","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"096d3c9e-7707-4ec7-b0b5-5d0b36d47300","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets?preview=false","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","assets"],"query":[{"key":"preview","value":"false","description":"The flag used to show fully ingested assets."}],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecatc\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecat3\": [\n \"\",\n \"\"\n ],\n \"proident__\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n }\n ]\n}"},{"id":"e879af2c-2175-4daf-a24f-347db7500f8f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets?preview=false","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","assets"],"query":[{"key":"preview","value":"false","description":"The flag used to show fully ingested assets."}],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8de1ddc3-3940-4e43-91a4-0c8bc80d18c7","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets?preview=false","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","assets"],"query":[{"key":"preview","value":"false","description":"The flag used to show fully ingested assets."}],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f09a3127-0b39-4337-9762-3c500c1a861b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets?preview=false","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","assets"],"query":[{"key":"preview","value":"false","description":"The flag used to show fully ingested assets."}],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"02eb49ba-29d2-4099-90a5-ba33d628fa1d"},{"name":"Remove Assets Form A Branded Portal.","id":"6c264713-19e8-49dc-9417-7a7ecda445e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets","description":"

Remove assets form a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f4d9a9c4-26a9-4560-b849-7b96ecb79132","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"0e518c2c-68e7-4694-bcbf-3a594571e06b","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6ee085dc-0c13-448f-b937-1c6c507d3731","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c7d7c4e5-ec5f-4448-b095-96f3df5031e4","name":"The branded portal was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2f727fa4-311b-4d5d-81a2-453b464b88e4","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6c264713-19e8-49dc-9417-7a7ecda445e0"},{"name":"Search A Live Branded Portal","id":"952c2cac-b370-46df-9cac-87038c725cda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","description":"

Returns search results for a live branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"edb027d2-261f-4896-a933-5a972eaa857f","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"","key":"libraryId"},{"id":"25463e5a-18c6-450b-8f7e-9485b73bfba0","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"d65f981b-5899-494a-ae76-12b04a5757ba","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n }\n }\n ]\n}"},{"id":"28820265-dcad-4d4b-ae94-5128151c0d43","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"301f9a9f-adbc-4111-9924-2abb6b8d8f82","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b1f6d2ba-2de9-4cd7-a3df-27a0a5fe5847","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1d6c514c-5d15-4912-93a0-39a7d08512a0","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"952c2cac-b370-46df-9cac-87038c725cda"},{"name":"Retrieve Branded Portal Upload Section Details","id":"74f7c1b3-b9bc-4196-9850-573d092346ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","description":"

Return branded portal upload section details

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"c064ced1-4722-4de6-b404-d18458a1ea77","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"0ea33c0d-ba32-4f57-949d-113e8440a3c1","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"764af754-6e69-4689-adf8-38517ac149d8","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"brandedPortalId\": \"\",\n \"versionId\": \"\",\n \"sectionId\": \"\",\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}"},{"id":"33fc4af4-fb8f-476f-a062-21369c828570","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"90ab3ade-3f9b-445e-a693-21011c946031","name":"The branded portal or upload section was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"82940261-5212-4721-b3b6-e54c41a3c6c4","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"74f7c1b3-b9bc-4196-9850-573d092346ce"},{"name":"Update Branded Portal Upload Section","id":"3136719c-b014-489f-971b-536754701d4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","description":"

Update a branded portal upload section by branded portal id and upload section id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"78689f2f-b5fa-46a4-b794-371d384de2dc","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"d49aa8c6-8b6d-4a35-81d7-53c8f8ab61cc","description":{"content":"

(Required) The upload section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"a542266f-7f55-4a65-b8ab-44f6b2fccb25","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4660a130-7d72-4d6f-93e6-310316bd3b4d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d296c812-8731-4291-9aaa-dd9fe4283b4b","name":"The branded portal was not found by the branded portal id given.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"00182842-8ae4-4e54-b504-73a830ce3763","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3136719c-b014-489f-971b-536754701d4e"},{"name":"Create Branded Portal Upload Section","id":"20525592-7e4a-401b-8dff-e24966eaac77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","description":"

Create branded portal upload section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"5d298261-8506-42d3-9f0c-584153e4c7a4","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"4334f7c8-c325-4db2-87da-c188fd4804bd","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"6cbef19c-895a-4a49-a02f-bc0a80dd2e0a","name":"No Content, Request was successful. Response is null.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"be3208ab-83df-4487-b673-8d9c3e0cf27c","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0482e4d7-504b-4dd0-b6b3-f8cfc06c9257","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1cb909a3-b793-4919-828b-43adcd102bee","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"59a655e0-62d4-4418-8c65-aeb711d5430d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"20525592-7e4a-401b-8dff-e24966eaac77"},{"name":"Remove Branded Portal Upload Section","id":"98228dd4-f644-43fa-9de3-5d5250bacaa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","description":"

Remove a branded portal upload section by branded portal id and upload section id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"23c5fc8e-032f-4bbe-bb2b-fc3db04e6ce6","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"b9d72abd-2446-4088-ad41-199c63aab36a","description":{"content":"

(Required) The upload section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"dbea4b3c-b38e-4553-9b10-9fc96a1d8db6","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d375fd76-87b6-4123-a50d-1b7b7268c423","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2cfb9018-1444-41ca-b419-63b653257876","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7e99cee1-7719-4e88-a812-b5d9e4feebac","name":"The branded portal was not found by the branded portal id given.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a9c6edbb-c4cc-4efc-a406-56ad97d508bf","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/sections/:sectionId/uploads","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","sections",":sectionId","uploads"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"98228dd4-f644-43fa-9de3-5d5250bacaa5"},{"name":"Retrieves Branded Portal Asset Rendition Types","id":"3c6d7582-8739-46f2-a66a-5779099f97fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/renditionKinds","description":"

Retrieves all the rendition types available for the given Branded Portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":libraryId","brandedportals",":brandedPortalId","renditionKinds"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"8a8f4669-0abd-474a-864d-8f4af789dff3","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"","key":"libraryId"},{"id":"137f8c83-77b7-4cd0-8846-1de5bf58809f","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"3df0a790-467d-4832-8500-a5fb0ff43021","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/renditionKinds","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","renditionKinds"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"renditionKindId\": \"\",\n \"code\": \"\",\n \"description\": \"\",\n \"height\": \"\",\n \"isDefault\": \"\",\n \"mimeType\": \"\",\n \"name\": \"\",\n \"quality\": \"\",\n \"targetFileExtension\": \"\",\n \"width\": \"\",\n \"colorspace\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consectetur9de\": {},\n \"ex_f32\": {}\n },\n \"interpolations\": {\n \"labore16f\": {},\n \"dolor5\": {},\n \"amet38d\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"user:editEmail\"\n ]\n },\n {\n \"renditionKindId\": \"\",\n \"code\": \"\",\n \"description\": \"\",\n \"height\": \"\",\n \"isDefault\": \"\",\n \"mimeType\": \"\",\n \"name\": \"\",\n \"quality\": \"\",\n \"targetFileExtension\": \"\",\n \"width\": \"\",\n \"colorspace\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"veniam_25c\": {},\n \"qui__ec\": {},\n \"mollit_c\": {}\n },\n \"interpolations\": {\n \"sit_36d\": {},\n \"laborumf4\": {},\n \"quis_1\": {},\n \"nulla56\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"5dbd20df-4a78-4b02-a858-5c9ca96dbe3f","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/renditionKinds","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","renditionKinds"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"24ee4085-9844-4e64-b831-028d9ba24dba","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/renditionKinds","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","renditionKinds"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f5bb6aba-58f5-4a51-ad66-00112ff5c20d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/renditionKinds","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","renditionKinds"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3c6d7582-8739-46f2-a66a-5779099f97fd"},{"name":"Retrieve Branded Portal Draft Assets","id":"d0531952-2284-4d9c-ad8d-6722ba48e62b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets?preview=false","description":"

Returns draft assets in a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

The flag used to show fully ingested assets.

\n","type":"text/plain"},"key":"preview","value":"false"}],"variable":[{"id":"1c8b2f9c-a3c9-4011-8397-7b974ff93d54","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"50d65273-0f9f-4f1f-a4fa-cbbdaeb8d21c","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"586043d9-022e-4aaa-ac22-28b8a21cec91","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets?preview=false","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"query":[{"key":"preview","value":"false","description":"The flag used to show fully ingested assets."}],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecatc\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"visible\": \"\",\n \"brandedPortalVersionSections\": {\n \"occaecat3\": [\n \"\",\n \"\"\n ],\n \"proident__\": [\n \"\",\n \"\"\n ]\n },\n \"permissions\": {\n \"all\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ]\n }\n }\n ]\n}"},{"id":"a5c68036-55b7-4b53-81e3-e6a0e8c1b842","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets?preview=false","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"query":[{"key":"preview","value":"false","description":"The flag used to show fully ingested assets."}],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4f337369-39d1-4b88-a3fc-fd52928b5a23","name":"A branded portal was not found. ","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets?preview=false","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"query":[{"key":"preview","value":"false","description":"The flag used to show fully ingested assets."}],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1f2ccf57-9cc3-4c75-97a9-73f4521d707c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets?preview=false","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"query":[{"key":"preview","value":"false","description":"The flag used to show fully ingested assets."}],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d0531952-2284-4d9c-ad8d-6722ba48e62b"},{"name":"Create Assets In Branded Portal Section","id":"78b16fd9-680c-41a0-8554-54f925efc59a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","description":"

Adds assets too a branded portal section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"8afdd272-e894-4fd0-be36-42a12f05ce1d","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"7d231361-e276-4811-997c-432a610fd0ba","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"1ad339a9-5613-4b6c-8c39-2b6ef96ad4aa","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c3c333a4-1147-4815-841a-edf7c48a9f0f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f031ba20-1596-4bf4-a202-2e646af0a042","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2c246105-0103-4d4a-b55f-5ba8fed6711c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"78b16fd9-680c-41a0-8554-54f925efc59a"},{"name":"Remove Assets Form A Branded Portal Section","id":"c52098f8-f6a6-4a26-98bd-b8fabc6ffa51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","description":"

Remove assets form a branded portal section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"2f175240-1982-40ea-88db-e1eaeecda7ab","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"8b832769-009c-42cb-aaf0-9c7981cd83fc","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"c29ae6e6-9c48-468f-9c82-a8d84c1bd0e7","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9de4f581-4265-4cb9-b9e4-5fdeb7cd984d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e825a094-3e56-4f97-a7e3-6ae3528d3e10","name":"The branded portal was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8b22df4d-5994-4ea0-84dc-6517a48ad866","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c52098f8-f6a6-4a26-98bd-b8fabc6ffa51"},{"name":"Retrieve Assets Form A Live Branded Portal","id":"9dd39a7a-5b8f-44b6-a6dc-c13855e2c1b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","description":"

Returns assets form a live branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"464da35f-3a7b-4ec1-84b4-7cc68e3d69f9","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"","key":"libraryId"},{"id":"1d012e63-3255-4044-82f9-2dc08cf241d5","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"cbc9d9c7-976c-4076-8ae7-4ca383e8a4d1","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"52f5d656-e3d5-4630-81e4-8482bd53a3ab","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"preview\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamingManifest\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\"\n },\n \"file\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n }\n }\n ]\n}"},{"id":"7e5ffc49-811d-4600-ab3f-1899105b0f40","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eb50c68f-79d8-4720-9ed6-ea7f974b131e","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"13dcc5c7-2665-48fd-b4d2-3f1c304b947d","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fe500131-2dd0-44d0-ba41-b3b243d30a34","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/:sectionId/assets","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId",":sectionId","assets"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9dd39a7a-5b8f-44b6-a6dc-c13855e2c1b0"},{"name":"Retrieve Live Branded Portal Assets","id":"b5ce6f77-d0a7-470b-95ca-6ff067810f62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads/:downloadId","description":"

Retrieve a live branded portal assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads",":downloadId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"7ba87d38-a153-4365-8b48-e3eb409114b3","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"","key":"libraryId"},{"id":"be1622b0-598b-4537-ad71-50da84a15e9f","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"ec4e972e-3780-4fb5-89d0-2701558958a8","description":{"content":"

(Required) The download id.

\n","type":"text/plain"},"type":"any","value":"","key":"downloadId"}]}},"response":[{"id":"b8036d14-8784-41d1-b86b-ddf46164adbf","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads/:downloadId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads",":downloadId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"downloadId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"16d8b0dc-c5d2-4eb4-b69b-8327952b0285","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads/:downloadId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads",":downloadId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"downloadId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4f8d2f63-fcff-49c2-b67c-6d8b749fc4e8","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads/:downloadId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads",":downloadId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"downloadId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f44a6b54-d729-456e-a736-994233c315b8","name":"The branded portal was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads/:downloadId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads",":downloadId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"downloadId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"39387d04-bf36-499a-b52e-b29b2de944ff","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads/:downloadId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads",":downloadId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"downloadId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b5ce6f77-d0a7-470b-95ca-6ff067810f62"},{"name":"Retrieve Branded Portals Asset Rendition","id":"28bd11db-63e9-4d1a-adc4-5e6d9c17b591","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets/:assetId/renditions/:renditionKindId","description":"

Retrieves a specific rendition for a given published Branded Portal asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":libraryId","brandedportals",":brandedPortalId","assets",":assetId","renditions",":renditionKindId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"c9048749-576f-4e6a-a663-062d35664007","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"","key":"libraryId"},{"id":"2d5e606d-3bc6-4941-8fed-a129b337eaa8","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"b362fea2-e00d-4169-a989-233596e64046","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"2f58fb2a-e539-44e4-ac29-d5b33e68be44","description":{"content":"

(Required) The specific rendition kind id.

\n","type":"text/plain"},"type":"any","value":"","key":"renditionKindId"}]}},"response":[{"id":"8a217d86-289d-42cb-b753-8c825af9b376","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets/:assetId/renditions/:renditionKindId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets",":assetId","renditions",":renditionKindId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"renditionUrl\": \"\",\n \"thumbnailUrl\": \"\",\n \"pages\": {\n \"count\": \"\",\n \"offSet\": \"\",\n \"renditions\": [\n {\n \"sequence\": \"\",\n \"url\": \"\"\n },\n {\n \"sequence\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\"\n}"},{"id":"5fe6f679-0aff-474e-ba09-d1c109ee9b57","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets/:assetId/renditions/:renditionKindId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets",":assetId","renditions",":renditionKindId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"142e5ba6-eba6-402d-bec8-1217e58b3ec7","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets/:assetId/renditions/:renditionKindId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets",":assetId","renditions",":renditionKindId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"130f30f6-b99e-4ddb-ade6-3e097b70fa7e","name":"The asset rendition was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets/:assetId/renditions/:renditionKindId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets",":assetId","renditions",":renditionKindId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a5bfa3fe-203a-402e-a85e-5d0c80c6c154","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/assets/:assetId/renditions/:renditionKindId","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","assets",":assetId","renditions",":renditionKindId"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"},{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"28bd11db-63e9-4d1a-adc4-5e6d9c17b591"},{"name":"Update Branded Portal Name","id":"a60ea076-abcd-4b0a-a2c3-eb484e602c3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/name","description":"

Update the branded portal name.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","name"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"6e9a6bd5-0e86-47a1-ab6e-c423e8b411b2","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"6cf3dfca-80d8-4734-ac98-07645825a12b","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/name","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","name"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"publicLiveUrl\": \"\",\n \"status\": \"Live\",\n \"createdAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"hasUnpublishedChanges\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"sharedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"viewAccessGroupCount\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrudb4a\": {},\n \"dolorf8\": {}\n },\n \"interpolations\": {\n \"minimbd1\": {},\n \"consectetur90c\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLink\"\n ]\n}"},{"id":"7019666e-8c9b-4b66-a161-b52e1c36a56e","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/name","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","name"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a19834bc-ccf7-4372-a972-d0e03c2dbe36","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/name","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","name"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b3509d7d-d999-4b30-bbbb-f66afdcd2ddf","name":"A branded portal was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/name","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","name"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"613c9215-19b7-44dc-8995-0f1381501d01","name":"Conflict has occurred. Duplicate branded portal.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/name","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","name"],"variable":[{"key":"brandedPortalId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"522bd147-a6c4-4616-ba89-7f623778076a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/name","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","name"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a60ea076-abcd-4b0a-a2c3-eb484e602c3a"},{"name":"Update Branded Portal","id":"2c2763e1-bc88-49e8-82a9-db6553862388","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/layout","description":"

Update the branded portal page layout.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","layout"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"54f59159-87aa-4724-ae38-691a40e766f0","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"d450425e-b12b-46c4-bfbc-7343531696ab","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/layout","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","layout"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"1c4019be-ca3d-4202-bc07-752d519efa1c","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/layout","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","layout"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e100c7a8-ed9c-45c1-84f5-d5aa94126780","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/layout","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","layout"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"df36f2c5-5341-43f6-af20-1aabd7b89b9d","name":"A branded portal was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/layout","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","layout"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5b955839-5c2e-45b4-b710-33fa57f9e8bd","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/layout","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","layout"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2c2763e1-bc88-49e8-82a9-db6553862388"},{"name":"Update Branded Portal URL Settings","id":"d5a1fa21-1d27-4033-a4e5-f52d2ccafd4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"host\": \"\",\n \"path\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/url","description":"

Update the URL settings for a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","settings","url"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"6bbd3b1e-20cc-4f81-8aec-28c397745484","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"60af1cde-85be-418a-afa1-87c285a3bf47","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"host\": \"\",\n \"path\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/url","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","url"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"f914ea95-e0f0-493b-a8ed-5044f80382c3","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"host\": \"\",\n \"path\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/url","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","url"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"81aa6796-b0c9-4f47-81ee-6552d7604d17","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"host\": \"\",\n \"path\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/url","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","url"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ff7e4d68-6ef2-4c6a-91e0-15a8479d1077","name":"A branded portal was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"host\": \"\",\n \"path\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/url","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","url"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cf432167-0072-41f5-a36c-a9c8e4585e18","name":"Conflict has occurred. Duplicate portal url.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"host\": \"\",\n \"path\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/url","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","url"],"variable":[{"key":"brandedPortalId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ed677eea-374f-4234-944d-6a99083d710b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"host\": \"\",\n \"path\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/url","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","url"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d5a1fa21-1d27-4033-a4e5-f52d2ccafd4f"},{"name":"Update Branded Portal Search Settings","id":"fa2bbe63-e62c-468b-b2f1-4aa4671f5d9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowSearch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/search","description":"

Update the search settings for branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","settings","search"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"6feac2ac-16dc-4444-928c-3a112aa80512","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"e8f1cd16-9d7f-46ca-9f26-1feef5b109cc","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowSearch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/search","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","search"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"62cee350-4c4b-4464-87ab-f4f7d1e8cf0a","name":"Bad Request. Search settings is null.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowSearch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/search","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","search"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fed17393-1ec9-4ceb-9440-4eda0c2dee67","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowSearch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/search","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","search"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ef00c31f-c0d6-4999-aa78-07ac90afd287","name":"The branded portal was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowSearch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/search","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","search"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0f9ff446-b863-4b11-8c9b-af2113648519","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowSearch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/search","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","search"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fa2bbe63-e62c-468b-b2f1-4aa4671f5d9b"},{"name":"Update Branded Portal Download Settings","id":"a3d433ae-8fcb-4467-98cb-f0069e44d6d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowDownloads\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/download","description":"

Update download settings for a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","settings","download"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"19be1f6d-6ce5-469c-854b-6362bd53c0a8","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"3550f211-8df3-4abe-ba51-067de54088d7","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowDownloads\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/download","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","download"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"ee213a98-f7e1-45ab-8370-5d15b7eaf1cb","name":"Bad Request. The download setting was null.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowDownloads\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/download","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","download"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"57704abe-c25a-428c-ace9-689c67885b5e","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowDownloads\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/download","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","download"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b624267c-9862-4b47-b524-3d1ca45a1a2b","name":"The branded portal was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowDownloads\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/download","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","download"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2e253ce7-05b0-4e09-9e60-0a00cfe3a7c1","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"allowDownloads\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/download","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","download"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a3d433ae-8fcb-4467-98cb-f0069e44d6d1"},{"name":"Update Branded Portal Language Settings","id":"3d1d0a17-574e-47e0-9050-d2f7302d781f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"EN\",\n \"url\": \"\"\n },\n {\n \"language\": \"FR\",\n \"url\": \"\"\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/language","description":"

Update language settings for a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","settings","language"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"ff53d123-abb9-499d-bcef-e71004d18077","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"e0cf96b8-9868-4d5f-8b97-7ab5499c88e9","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"EN\",\n \"url\": \"\"\n },\n {\n \"language\": \"FR\",\n \"url\": \"\"\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/language","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","language"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"789aaa04-6d1c-4e7e-ae31-c527d4d43ed3","name":"Bad Request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"EN\",\n \"url\": \"\"\n },\n {\n \"language\": \"FR\",\n \"url\": \"\"\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/language","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","language"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b6cf0512-9f9e-495c-a335-c8140c3ff919","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"EN\",\n \"url\": \"\"\n },\n {\n \"language\": \"FR\",\n \"url\": \"\"\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/language","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","language"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e5f11680-303f-49f5-84cd-027b9045d5f7","name":"The branded portal was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"EN\",\n \"url\": \"\"\n },\n {\n \"language\": \"FR\",\n \"url\": \"\"\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/language","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","language"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f22c1ca3-f2d4-419b-b6f3-cc1a8342c1b0","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"EN\",\n \"url\": \"\"\n },\n {\n \"language\": \"FR\",\n \"url\": \"\"\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/language","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","language"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3d1d0a17-574e-47e0-9050-d2f7302d781f"},{"name":"Update Branded Portal Navigation Settings","id":"645141ce-fb92-464e-83ee-b237feb1db4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"showNavigation\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/navigation","description":"

Update navigation for a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","settings","navigation"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"a010de43-3250-4156-a242-a9d928761955","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"b4de9c64-ef06-42cf-9fb1-f5b798906abd","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"showNavigation\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/navigation","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","navigation"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"7d9fe48e-f5d6-4872-8d4a-66e84d18579f","name":"Bad Request. The navigation settings were null.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"showNavigation\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/navigation","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","navigation"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"08a85276-d0d8-460a-9073-d5639f47703e","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"showNavigation\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/navigation","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","navigation"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d11685a0-5dd8-4cd0-94a4-03b6ddd90313","name":"The branded portal was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"showNavigation\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/navigation","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","navigation"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cc336b7c-633f-45c8-ba94-1ff1e28aaf54","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"showNavigation\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/navigation","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","navigation"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"645141ce-fb92-464e-83ee-b237feb1db4d"},{"name":"Update Branded Portal Access Settings","id":"0b5a0953-56e3-4ea6-8d39-6eaffeb85d12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/restrictaccess","description":"

Update the restricted access settings for branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","settings","restrictaccess"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"cca35f9c-0244-4986-adff-c6fb5f94e09c","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"72028238-b2d5-4a2f-8177-825e220f612f","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/restrictaccess","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","restrictaccess"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"dafef65a-36ee-4e3f-8366-3044d91c6b9b","name":"Bad Request. Restricted access settings is null.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/restrictaccess","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","restrictaccess"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"54c47886-766e-49d6-b845-6223e5340e73","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/restrictaccess","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","restrictaccess"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"13427435-3f84-40d1-968e-62c33475e2e7","name":"The branded portal was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/restrictaccess","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","restrictaccess"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"aca05654-f0d6-4c99-9a7d-b6b265fd8486","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/restrictaccess","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","restrictaccess"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0b5a0953-56e3-4ea6-8d39-6eaffeb85d12"},{"name":"Update Branded Portal Highlight Colour","id":"7a815273-9731-4705-b4cb-3366bf8a239a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"highlightColour\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/highlightcolour","description":"

Update highlight colour for a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","settings","highlightcolour"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"395e51e0-9926-46e4-9c59-d69e77f39d7a","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"08fa0e64-d530-431c-9890-7ca80f4130f9","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"highlightColour\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/highlightcolour","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","highlightcolour"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"48048bcd-ae13-46e7-af61-df7247ac73ad","name":"Bad Request. Highlight colour settings is null.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"highlightColour\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/highlightcolour","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","highlightcolour"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8cce2416-7d62-4102-8546-383d27b7bd18","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"highlightColour\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/highlightcolour","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","highlightcolour"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"00ac7a17-40dc-4931-9720-19ea77bec705","name":"The branded portal was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"highlightColour\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/highlightcolour","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","highlightcolour"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ad7e8a7a-1146-433d-83e5-3987465594b8","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"highlightColour\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/settings/highlightcolour","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","settings","highlightcolour"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7a815273-9731-4705-b4cb-3366bf8a239a"},{"name":"Validate Assets In All Branded Portals","id":"577f26db-7ab9-4e4e-b687-10c385e5af38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/validate/assets","description":"

Validates assets in all branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals","validate","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"46303aa4-c68c-4134-8aba-fd2354b922d5","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/validate/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n \"\",\n \"\"\n]"},{"id":"a792a244-187d-41e7-b634-8ea17aca764a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/validate/assets"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b13b9cdd-e630-4ecf-a683-63de08aacedb","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/validate/assets"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"577f26db-7ab9-4e4e-b687-10c385e5af38"},{"name":"Disable Branded Portal","id":"1aa38bcc-f552-47e7-a185-71394d02b8c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/disable","description":"

Disable branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","disable"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"0cc70fe8-5998-4856-a4b1-a3a9f4d3d3a5","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"d66c8100-51ae-4d62-bebd-8d9834cc08be","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/disable","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","disable"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"d889878e-3234-4be0-ba76-57da8f2c43fe","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/disable","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","disable"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"01090c7b-06aa-4fc8-9689-34e6bd9bb0f1","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/disable","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","disable"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d8680b59-c7be-4987-9c6d-0ad6d8d4d933","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/disable","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","disable"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1aa38bcc-f552-47e7-a185-71394d02b8c7"},{"name":"Publish Branded Portal","id":"52f72f1a-85e3-4c45-abc4-2825f75041a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","description":"

Publish branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","publish"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"a520feb0-d3ca-4b47-838b-ba2409151aee","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"fab85ca9-3250-40a3-b57e-7c9a89823c26","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","publish"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"9bdce031-42d1-4a52-8a60-a990928cfa50","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","publish"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d83568ab-3036-429c-bfa8-82a8da30c494","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","publish"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a82cae7a-1910-48d4-8fea-3bf9401e2323","name":"Conflict has occurred. Branded portal URL already exists.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","publish"],"variable":[{"key":"brandedPortalId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7732bbe1-d59a-468f-a248-77549f43ed91","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/publish","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","publish"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"52f72f1a-85e3-4c45-abc4-2825f75041a3"},{"name":"Create Duplicate Branded Portal","id":"f89061ce-f2e0-459a-93a8-c20aa7eb0605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"brandedPortalVersion\": \"Draft\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/duplicate","description":"

Duplicates a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","duplicate"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"678a41e7-1d93-463b-b6a8-2e9fb5c52764","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"df6beda3-1400-4962-abe2-ef29a8f92451","name":"The branded portal was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"brandedPortalVersion\": \"Draft\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/duplicate","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","duplicate"],"variable":[{"key":"brandedPortalId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"liveVersion\": \"\",\n \"draftVersion\": \"\",\n \"name\": \"\",\n \"status\": \"Disabled\",\n \"createdAt\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"liveHost\": \"\",\n \"livePath\": \"\",\n \"pageLayout\": \"\",\n \"lastPublishedAt\": \"\",\n \"draftModifiedAt\": \"\",\n \"lastModifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"downloadSettings\": {\n \"allowDownloads\": \"\"\n },\n \"navigationSettings\": {\n \"showNavigation\": \"\"\n },\n \"searchSettings\": {\n \"allowSearch\": \"\"\n },\n \"restrictAccessSettings\": {\n \"requireAccessKey\": \"\",\n \"accessKey\": \"\"\n },\n \"highlightColourSettings\": {\n \"highlightColour\": \"\"\n },\n \"languageSettings\": {\n \"language\": \"FR\",\n \"brandedPortalMultiLanguageLinks\": [\n {\n \"language\": \"FR\",\n \"url\": \"\"\n },\n {\n \"language\": \"EN\",\n \"url\": \"\"\n }\n ]\n },\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n },\n \"defaultLogoFilePath\": \"\",\n \"pageViews\": \"\",\n \"downloads\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequatcc9\": {},\n \"occaecat_40e\": {}\n },\n \"interpolations\": {\n \"cupidatat_b35\": {},\n \"minim_6\": {},\n \"ad8\": {},\n \"sed_66d\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsLightbox\"\n ]\n}"},{"id":"d838ad59-5757-45df-98d9-adc5699d4876","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"brandedPortalVersion\": \"Draft\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/duplicate","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","duplicate"],"variable":[{"key":"brandedPortalId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"19d29ac6-fa5a-4cce-88d0-a05e3cc97b85","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"brandedPortalVersion\": \"Draft\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/duplicate","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","duplicate"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"228bd2b1-3a7d-4348-9396-02a157034697","name":"A branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"brandedPortalVersion\": \"Draft\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/duplicate","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","duplicate"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5913dfcb-4670-4df2-a5bc-5a0bb845c9eb","name":"Conflict has occurred. Either duplicate name or url.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"brandedPortalVersion\": \"Draft\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/duplicate","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","duplicate"],"variable":[{"key":"brandedPortalId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"46360a22-b18c-4be7-8c78-2c593f088ca7","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"host\": \"\",\n \"path\": \"\",\n \"brandedPortalVersion\": \"Draft\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/duplicate","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","duplicate"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f89061ce-f2e0-459a-93a8-c20aa7eb0605"},{"name":"Move Assets To A Branded Portal Section","id":"efd69ece-f354-4f65-a5ad-ad07960b90d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sourceSectionId\": \"\",\n \"destinationSectionId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/move/assets","description":"

Move assets to a branded portal section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","move","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"faf91c05-a792-4c34-9a6f-bade6372b2d8","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"c03af3f5-065e-4066-9175-5172e41894f8","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sourceSectionId\": \"\",\n \"destinationSectionId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/move/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","move","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b0810733-ecdb-47a0-9dea-512ba1896f05","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sourceSectionId\": \"\",\n \"destinationSectionId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/move/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","move","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a7296f8a-cb33-496a-9f26-a4dae67d7d15","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sourceSectionId\": \"\",\n \"destinationSectionId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/move/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","move","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"15c83a8e-f91e-43ca-8251-785ef61e9acb","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sourceSectionId\": \"\",\n \"destinationSectionId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/move/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","move","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"efd69ece-f354-4f65-a5ad-ad07960b90d0"},{"name":"Authorize Branded Portal Access","id":"af4f9b85-88ee-4285-bc79-36ae864ab5a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/brandedportals/:host/:path/authorize","description":"

Authorize access for branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","brandedportals",":host",":path","authorize"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"28fdf910-3dd7-4845-af5f-7702f891d2c4","description":{"content":"

(Required) The branded portal library domain name.

\n","type":"text/plain"},"type":"any","value":"","key":"host"},{"id":"d28b6095-9697-42cf-86e4-d5d7e15c930e","description":{"content":"

(Required) The branded portal name in URL path.

\n","type":"text/plain"},"type":"any","value":"","key":"path"}]}},"response":[{"id":"b16a4dba-c30c-495a-9229-0e488db035d4","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/:path/authorize","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host",":path","authorize"],"variable":[{"key":"host"},{"key":"path"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1f18ad03-4209-40b6-a1d6-748f08510d17","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/:path/authorize","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host",":path","authorize"],"variable":[{"key":"host"},{"key":"path"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"df1b3e51-8b04-404c-93e1-53454b858dfb","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/:path/authorize","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host",":path","authorize"],"variable":[{"key":"host"},{"key":"path"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b76dd177-873e-4367-b235-06d36e84096f","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/:path/authorize","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host",":path","authorize"],"variable":[{"key":"host"},{"key":"path"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"dd2a5846-8397-4fb8-a0d3-92fafd91a632","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/brandedportals/:host/:path/authorize","host":["https://api.mediavalet.com"],"path":["public","brandedportals",":host",":path","authorize"],"variable":[{"key":"host"},{"key":"path"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"af4f9b85-88ee-4285-bc79-36ae864ab5a5"},{"name":"Validate Assets In A Branded Portal","id":"9bf7fb98-a937-4ff2-98b1-c02b0f701634","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/validate/assets","description":"

Validate assets in a branded portal.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId","validate","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"935e2755-100e-4565-a749-5c4346f7e986","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"6b759f82-9c8f-4718-b693-d52e7ad1fad2","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/validate/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","validate","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"assetId\": \"\",\n \"assetFile\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"sectionIds\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"laborum1c3\": {},\n \"dolore_99\": {}\n },\n \"interpolations\": {\n \"ea_80\": {},\n \"est4\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"assetId\": \"\",\n \"assetFile\": {\n \"title\": \"\",\n \"fileName\": \"\",\n \"fileType\": \"\"\n },\n \"sectionIds\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ullamco_5a\": {},\n \"incididunt_45e\": {}\n },\n \"interpolations\": {\n \"exercitation_0\": {}\n },\n \"permissions\": [\n \"asset:createImageCrop\",\n \"asset:downloadFromPortal\"\n ]\n }\n]"},{"id":"24144e02-cdcb-423f-89c6-fd1574f4fdb5","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/validate/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","validate","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"01f6c16e-21c0-41c2-b0b4-8fd01e232ff1","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/validate/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","validate","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"32a475dd-8b61-4bf8-8645-2d4997296de2","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/validate/assets","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId","validate","assets"],"variable":[{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9bf7fb98-a937-4ff2-98b1-c02b0f701634"},{"name":"Remove section sync","id":"2b46d79c-1c97-498f-92c9-203e3d6c66c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/unsync","description":"

Unsync Branded Portal section.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["brandedportals",":brandedPortalId",":sectionId","unsync"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"353c0375-3486-4faa-95cf-e703acb06633","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"},{"id":"036de19d-1572-4f07-9e15-554255cb5152","description":{"content":"

(Required) The section id.

\n","type":"text/plain"},"type":"any","value":"","key":"sectionId"}]}},"response":[{"id":"fa032f14-7137-4001-97fc-c1a2995dfe0a","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/unsync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","unsync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"82495f13-3ffc-4fe0-9c7a-e417082599ab","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/unsync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","unsync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3fc997d0-735b-43ba-b8f8-f7afffff0036","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/unsync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","unsync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8437f4de-89a2-49b9-8a1e-07ec1efde57b","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/unsync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","unsync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"78046115-38de-418c-b45d-652024ae5c18","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"categoryId\": \"\",\n \"lightboxId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/brandedportals/:brandedPortalId/:sectionId/unsync","host":["https://api.mediavalet.com"],"path":["brandedportals",":brandedPortalId",":sectionId","unsync"],"variable":[{"key":"brandedPortalId"},{"key":"sectionId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2b46d79c-1c97-498f-92c9-203e3d6c66c6"},{"name":"Create A Download Live Branded Portal Assets","id":"3b224e26-83f8-422d-911f-8133da7b0316","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sectionId\": \"\",\n \"zipFileName\": \"\",\n \"type\": \"BrandedPortal\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads","description":"

Returns a live branded portal assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"c0f83982-7c54-4ef4-8ba9-aac6134fc633","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"","key":"libraryId"},{"id":"ecaf4b54-fe5f-43a6-8565-fe962a2c44ff","description":{"content":"

(Required) The branded portal id.

\n","type":"text/plain"},"type":"any","value":"","key":"brandedPortalId"}]}},"response":[{"id":"d48545af-103a-4036-9203-25e2d96ea1a8","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sectionId\": \"\",\n \"zipFileName\": \"\",\n \"type\": \"BrandedPortal\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"DownloadId\": \"\",\n \"ZipFileName\": \"\",\n \"AssetIds\": [\n \"\",\n \"\"\n ],\n \"SectionId\": \"\",\n \"Type\": \"Asset\"\n}"},{"id":"f00c5095-e079-49fa-a1da-eedc8de25941","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sectionId\": \"\",\n \"zipFileName\": \"\",\n \"type\": \"BrandedPortal\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8ad62599-e10d-4b7d-91c1-d092b56c6532","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sectionId\": \"\",\n \"zipFileName\": \"\",\n \"type\": \"BrandedPortal\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6084adfb-0186-4f47-94c7-e59e7b6465e7","name":"The branded portal was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sectionId\": \"\",\n \"zipFileName\": \"\",\n \"type\": \"BrandedPortal\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3f3fd1c7-69a7-41d0-a57a-3d505ca54ecf","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"sectionId\": \"\",\n \"zipFileName\": \"\",\n \"type\": \"BrandedPortal\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:libraryId/brandedportals/:brandedPortalId/downloads","host":["https://api.mediavalet.com"],"path":["public",":libraryId","brandedportals",":brandedPortalId","downloads"],"variable":[{"key":"libraryId"},{"key":"brandedPortalId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3b224e26-83f8-422d-911f-8133da7b0316"}],"id":"0f09f9ae-149d-4fab-ade3-2041a51e8754","_postman_id":"0f09f9ae-149d-4fab-ade3-2041a51e8754","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"DirectLinks","item":[{"name":"Retrieve Direct Links","id":"53d620f3-2c4f-4b9f-8a39-0fe5d82cd6fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/directlinks/export","description":"

Returns a zip file of collection of direct links.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks","export"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"aac9832a-9c4e-4ddf-b0be-52e7bb5a9244","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/directlinks/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"d04531b1-77a3-4ec2-aa68-e1bc9d4b881b","name":"Library does not contain direct link","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/directlinks/export"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"06db9ba2-031e-4d69-90ac-8353b426b112","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/directlinks/export"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"214e4b83-6ecf-4f07-b870-a78880d82f60","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/directlinks/export"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"445e3f49-2dc6-4183-9806-277703317500","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/directlinks/export"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"53d620f3-2c4f-4b9f-8a39-0fe5d82cd6fa"},{"name":"Retrieve Direct Links","id":"2c489c93-262d-499b-80f9-ea259b8d930b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=false","description":"

Returns a collection of direct links.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks",":assetId"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

Allow soft deleted assets if permissible.

\n","type":"text/plain"},"key":"includeSoftDeleted","value":"false"}],"variable":[{"id":"67016f6c-4568-4e58-ab27-4aa411646fc5","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"c3680d0b-e6cb-416d-87e3-22b28e892fbe","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"assetId\": \"\",\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"linkName\": \"\",\n \"createdAt\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Broken\",\n \"modifiedDateTime\": \"\",\n \"uniqueViews\": \"\",\n \"totalViews\": \"\",\n \"totalBandwidth\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"mollit2f\": {},\n \"qui0\": {}\n },\n \"interpolations\": {\n \"pariatur8\": {}\n },\n \"permissions\": [\n \"asset:shareAsLink\",\n \"asset:shareAsCdnLink\"\n ]\n },\n {\n \"assetId\": \"\",\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"linkName\": \"\",\n \"createdAt\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Active\",\n \"modifiedDateTime\": \"\",\n \"uniqueViews\": \"\",\n \"totalViews\": \"\",\n \"totalBandwidth\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"quis_91b\": {}\n },\n \"interpolations\": {\n \"magna23\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n]"},{"id":"287bfc99-2e32-456c-9a33-0ffe5ef38960","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2f07071e-67a8-44d6-9829-3053e30a194a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2e03f3c5-8df4-4224-b546-9152888d06d1","name":"The asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"caefbced-d013-4cd8-9b56-d43e6deecba4","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId?includeSoftDeleted=false","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"query":[{"key":"includeSoftDeleted","value":"false","description":"Allow soft deleted assets if permissible."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2c489c93-262d-499b-80f9-ea259b8d930b"},{"name":"List All Direct Links","id":"7b4926e6-f5a3-4a27-9e77-45a83aefc79c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/directlinks?offset=0&count=100","description":"

Returns a paginated list of all direct links for the current library, including asset metadata and analytics.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

The number of records to skip (default 0).

\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"

The number of records to return per page (default 100, max 1000).

\n","type":"text/plain"},"key":"count","value":"100"}],"variable":[]}},"response":[{"id":"08fa8079-7a4c-4923-8b53-e774c5407c37","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/directlinks?offset=0&count=100","host":["https://api.mediavalet.com"],"path":["directlinks"],"query":[{"key":"offset","value":"0"},{"key":"count","value":"100"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\r\n \"apiVersion\": \"string\",\r\n \"buildVersion\": \"string\",\r\n \"warnings\": [\r\n \"string\"\r\n ],\r\n \"errors\": [\r\n \"string\"\r\n ],\r\n \"payload\": [\r\n {\r\n \"assetId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"cdnLink\": \"string\",\r\n \"createdAt\": \"2026-04-30T00:58:36.906Z\",\r\n \"directLinkId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"linkName\": \"string\",\r\n \"modifiedDateTime\": \"2026-04-30T00:58:36.906Z\",\r\n \"state\": \"string\",\r\n \"totalViews\": 0,\r\n \"uniqueViews\": 0,\r\n \"totalBandwidth\": 0,\r\n \"assetFileName\": \"string\",\r\n \"assetCategoryNames\": [\r\n \"string\"\r\n ]\r\n }\r\n ],\r\n \"recordCount\": {\r\n \"totalRecordsFound\": 0,\r\n \"startingRecord\": 0,\r\n \"recordsReturned\": 0\r\n },\r\n \"meta\": {\r\n \"metaInformation\": {},\r\n \"createdAt\": \"2026-04-30T00:58:36.906Z\"\r\n }\r\n}"},{"id":"f4fc83d4-9c2f-440d-8d1b-8720f3272cbe","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks?offset=0&count=100","host":["https://api.mediavalet.com"],"path":["directlinks"],"query":[{"key":"offset","value":"0"},{"key":"count","value":"100"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4a090076-ec40-436f-8116-83130f2fcabe","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks?offset=0&count=100","host":["https://api.mediavalet.com"],"path":["directlinks"],"query":[{"key":"offset","value":"0"},{"key":"count","value":"100"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fe755ed2-76e3-4328-9d52-d41b3f726aba","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks?offset=0&count=100","host":["https://api.mediavalet.com"],"path":["directlinks"],"query":[{"key":"offset","value":"0"},{"key":"count","value":"100"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7b4926e6-f5a3-4a27-9e77-45a83aefc79c"},{"name":"Create A Direct Link","id":"eb192aba-4edc-4071-9e5c-4f9536de2de3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"RenditionSettings\": {\n \"Size\": {\n \"Type\": \"Small\",\n \"Width\": \"\",\n \"Height\": \"\"\n },\n \"Format\": \"\"\n },\n \"LinkSettings\": {\n \"IsDevModeEnabled\": \"\",\n \"LinkName\": \"\",\n \"IsEmbedCode\": \"\",\n \"IsUniqueLink\": \"\",\n \"TurnSubtitlesOn\": \"\",\n \"ChosenLanguages\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/directlinks/:assetId","description":"

Generates a direct link for an orginal or renditions.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"e5dd19f7-1222-40c2-890b-d968c2bbe70c","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"b6607dd9-ee94-474c-a3e2-977558ebffb4","name":"The direct link was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"RenditionSettings\": {\n \"Size\": {\n \"Type\": \"Small\",\n \"Width\": \"\",\n \"Height\": \"\"\n },\n \"Format\": \"\"\n },\n \"LinkSettings\": {\n \"IsDevModeEnabled\": \"\",\n \"LinkName\": \"\",\n \"IsEmbedCode\": \"\",\n \"IsUniqueLink\": \"\",\n \"TurnSubtitlesOn\": \"\",\n \"ChosenLanguages\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolore_1b\": {}\n },\n \"interpolations\": {\n \"ea_f5_\": {},\n \"voluptate_358\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:downloadFromMvd\"\n ]\n}"},{"id":"24f1acc8-ea84-49db-9907-b9e497634690","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"RenditionSettings\": {\n \"Size\": {\n \"Type\": \"Small\",\n \"Width\": \"\",\n \"Height\": \"\"\n },\n \"Format\": \"\"\n },\n \"LinkSettings\": {\n \"IsDevModeEnabled\": \"\",\n \"LinkName\": \"\",\n \"IsEmbedCode\": \"\",\n \"IsUniqueLink\": \"\",\n \"TurnSubtitlesOn\": \"\",\n \"ChosenLanguages\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"40e3be3a-2158-491a-abce-8717ed1c2ec6","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"RenditionSettings\": {\n \"Size\": {\n \"Type\": \"Small\",\n \"Width\": \"\",\n \"Height\": \"\"\n },\n \"Format\": \"\"\n },\n \"LinkSettings\": {\n \"IsDevModeEnabled\": \"\",\n \"LinkName\": \"\",\n \"IsEmbedCode\": \"\",\n \"IsUniqueLink\": \"\",\n \"TurnSubtitlesOn\": \"\",\n \"ChosenLanguages\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"df93f8b2-18e0-4226-a92e-75290f4d618a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"RenditionSettings\": {\n \"Size\": {\n \"Type\": \"Small\",\n \"Width\": \"\",\n \"Height\": \"\"\n },\n \"Format\": \"\"\n },\n \"LinkSettings\": {\n \"IsDevModeEnabled\": \"\",\n \"LinkName\": \"\",\n \"IsEmbedCode\": \"\",\n \"IsUniqueLink\": \"\",\n \"TurnSubtitlesOn\": \"\",\n \"ChosenLanguages\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"677e91c0-93db-4203-83a4-e1c231bcae77","name":"The asset was not found. ","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"RenditionSettings\": {\n \"Size\": {\n \"Type\": \"Small\",\n \"Width\": \"\",\n \"Height\": \"\"\n },\n \"Format\": \"\"\n },\n \"LinkSettings\": {\n \"IsDevModeEnabled\": \"\",\n \"LinkName\": \"\",\n \"IsEmbedCode\": \"\",\n \"IsUniqueLink\": \"\",\n \"TurnSubtitlesOn\": \"\",\n \"ChosenLanguages\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"02ab801f-c368-4821-ae85-2238acf814da","name":"Conflict has occurred. ","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"RenditionSettings\": {\n \"Size\": {\n \"Type\": \"Small\",\n \"Width\": \"\",\n \"Height\": \"\"\n },\n \"Format\": \"\"\n },\n \"LinkSettings\": {\n \"IsDevModeEnabled\": \"\",\n \"LinkName\": \"\",\n \"IsEmbedCode\": \"\",\n \"IsUniqueLink\": \"\",\n \"TurnSubtitlesOn\": \"\",\n \"ChosenLanguages\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d228b876-b23c-45b0-85c3-c253ea63beda","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"RenditionSettings\": {\n \"Size\": {\n \"Type\": \"Small\",\n \"Width\": \"\",\n \"Height\": \"\"\n },\n \"Format\": \"\"\n },\n \"LinkSettings\": {\n \"IsDevModeEnabled\": \"\",\n \"LinkName\": \"\",\n \"IsEmbedCode\": \"\",\n \"IsUniqueLink\": \"\",\n \"TurnSubtitlesOn\": \"\",\n \"ChosenLanguages\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eb192aba-4edc-4071-9e5c-4f9536de2de3"},{"name":"Retrieves CDN report for a given time period.","id":"79a742d2-975d-40a3-94f6-18a84f42e689","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/directlinks/exportByTime?startDate=&offset=0&count=1000&endDate=","description":"

Retrieves CDN report for a given time period.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks","exportByTime"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

(Required) The start date of the report(DateTimeOffset ISO 8601).

\n","type":"text/plain"},"key":"startDate","value":""},{"description":{"content":"

The number of records that need to be offset.

\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"

The number of records to be pulled per page.

\n","type":"text/plain"},"key":"count","value":"1000"},{"description":{"content":"

The end date of the report(DateTimeOffset).

\n","type":"text/plain"},"key":"endDate","value":""}],"variable":[]}},"response":[{"id":"d8ac734d-2f6e-4034-909f-4c6f6c99af81","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/directlinks/exportByTime?startDate=&offset=0&count=1000&endDate=","host":["https://api.mediavalet.com"],"path":["directlinks","exportByTime"],"query":[{"key":"startDate","value":"","description":"(Required) The start date of the report(DateTimeOffset ISO 8601)."},{"key":"offset","value":"0","description":"The number of records that need to be offset."},{"key":"count","value":"1000","description":"The number of records to be pulled per page."},{"key":"endDate","value":"","description":"The end date of the report(DateTimeOffset)."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"apiVersion\": \"\",\n \"buildVersion\": \"\",\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"errors\": [\n \"\",\n \"\"\n ],\n \"payload\": {\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"analyticData\": [\n {\n \"assetId\": \"\",\n \"mediaFileId\": \"\",\n \"totalViews\": \"\",\n \"uniqueViews\": \"\",\n \"totalBandwidth\": \"\",\n \"linkName\": \"\",\n \"modifiedDateTime\": \"\"\n },\n {\n \"assetId\": \"\",\n \"mediaFileId\": \"\",\n \"totalViews\": \"\",\n \"uniqueViews\": \"\",\n \"totalBandwidth\": \"\",\n \"linkName\": \"\",\n \"modifiedDateTime\": \"\"\n }\n ]\n },\n \"recordCount\": {\n \"totalRecordsFound\": \"\",\n \"startingRecord\": \"\",\n \"recordsReturned\": \"\"\n },\n \"meta\": {\n \"metaInformation\": {\n \"ullamcoe\": {},\n \"laboris_\": {}\n },\n \"createdAt\": \"\"\n }\n}"},{"id":"daf00940-a1a1-4fca-ad2d-bc6d4ad0a508","name":"Library does not contain direct link","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/exportByTime?startDate=&offset=0&count=1000&endDate=","host":["https://api.mediavalet.com"],"path":["directlinks","exportByTime"],"query":[{"key":"startDate","value":"","description":"(Required) The start date of the report(DateTimeOffset ISO 8601)."},{"key":"offset","value":"0","description":"The number of records that need to be offset."},{"key":"count","value":"1000","description":"The number of records to be pulled per page."},{"key":"endDate","value":"","description":"The end date of the report(DateTimeOffset)."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a741406e-a502-41c2-ba78-31f33e05fcd6","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/exportByTime?startDate=&offset=0&count=1000&endDate=","host":["https://api.mediavalet.com"],"path":["directlinks","exportByTime"],"query":[{"key":"startDate","value":"","description":"(Required) The start date of the report(DateTimeOffset ISO 8601)."},{"key":"offset","value":"0","description":"The number of records that need to be offset."},{"key":"count","value":"1000","description":"The number of records to be pulled per page."},{"key":"endDate","value":"","description":"The end date of the report(DateTimeOffset)."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a16c5dec-dd17-49e9-8902-854b5176b525","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/exportByTime?startDate=&offset=0&count=1000&endDate=","host":["https://api.mediavalet.com"],"path":["directlinks","exportByTime"],"query":[{"key":"startDate","value":"","description":"(Required) The start date of the report(DateTimeOffset ISO 8601)."},{"key":"offset","value":"0","description":"The number of records that need to be offset."},{"key":"count","value":"1000","description":"The number of records to be pulled per page."},{"key":"endDate","value":"","description":"The end date of the report(DateTimeOffset)."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"20fa613f-ee45-4979-8ea2-cf28bf76b1ed","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/exportByTime?startDate=&offset=0&count=1000&endDate=","host":["https://api.mediavalet.com"],"path":["directlinks","exportByTime"],"query":[{"key":"startDate","value":"","description":"(Required) The start date of the report(DateTimeOffset ISO 8601)."},{"key":"offset","value":"0","description":"The number of records that need to be offset."},{"key":"count","value":"1000","description":"The number of records to be pulled per page."},{"key":"endDate","value":"","description":"The end date of the report(DateTimeOffset)."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"79a742d2-975d-40a3-94f6-18a84f42e689"},{"name":"Activate All Direct Links","id":"4247888e-9076-4564-802e-b364f29870b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/directLinks/:assetId/activateAll","description":"

Activate all direct links.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directLinks",":assetId","activateAll"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"028a4095-5f72-4fdb-83c4-9075ed5ffba4","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"856331d6-cdfe-4650-878f-a53339b1d77d","name":"All direct links were successfully activated.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activateAll"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"assetId\": \"\",\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"linkName\": \"\",\n \"createdAt\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Broken\",\n \"modifiedDateTime\": \"\",\n \"uniqueViews\": \"\",\n \"totalViews\": \"\",\n \"totalBandwidth\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"mollit2f\": {},\n \"qui0\": {}\n },\n \"interpolations\": {\n \"pariatur8\": {}\n },\n \"permissions\": [\n \"asset:shareAsLink\",\n \"asset:shareAsCdnLink\"\n ]\n },\n {\n \"assetId\": \"\",\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"linkName\": \"\",\n \"createdAt\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Active\",\n \"modifiedDateTime\": \"\",\n \"uniqueViews\": \"\",\n \"totalViews\": \"\",\n \"totalBandwidth\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"quis_91b\": {}\n },\n \"interpolations\": {\n \"magna23\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n]"},{"id":"450c9c9e-4d00-4613-ba5c-3dc98ba1ad12","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activateAll"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"752cf420-1412-4ea6-99e3-d8fea23b49fe","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activateAll"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b5eb0f7f-ca1e-4636-91d7-39b607b82c30","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activateAll"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c031ec02-06e7-4b45-abdf-cd5238437eec","name":"The direct link for Asset does not exist.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activateAll"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"209ad044-7de8-43b0-b903-21c0ff31af27","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activateAll"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4247888e-9076-4564-802e-b364f29870b8"},{"name":"Deactivate All Direct Links","id":"111ccdf1-3e1d-49ad-b9ed-6c2dbbe3734a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/directLinks/:assetId/deactivateAll","description":"

Deactivate all direct links.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directLinks",":assetId","deactivateAll"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"26dd83da-fcfd-47c3-aaf7-e19f55e8e11f","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"4b33f955-689c-4253-a062-08304509d85e","name":"All direct links were successfully deactivated.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivateAll"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"assetId\": \"\",\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"linkName\": \"\",\n \"createdAt\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Broken\",\n \"modifiedDateTime\": \"\",\n \"uniqueViews\": \"\",\n \"totalViews\": \"\",\n \"totalBandwidth\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"mollit2f\": {},\n \"qui0\": {}\n },\n \"interpolations\": {\n \"pariatur8\": {}\n },\n \"permissions\": [\n \"asset:shareAsLink\",\n \"asset:shareAsCdnLink\"\n ]\n },\n {\n \"assetId\": \"\",\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"linkName\": \"\",\n \"createdAt\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Active\",\n \"modifiedDateTime\": \"\",\n \"uniqueViews\": \"\",\n \"totalViews\": \"\",\n \"totalBandwidth\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"quis_91b\": {}\n },\n \"interpolations\": {\n \"magna23\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n]"},{"id":"b15de7f9-84d6-45d9-8d9a-9f6e96c42206","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivateAll"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c6ab8157-7279-40c4-b4f6-27fe3a33b1df","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivateAll"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"befa5113-ee2c-417e-bb81-a8757e1cb683","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivateAll"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ec0edf36-1395-4fe1-8244-ff24db74542e","name":"The direct link for Asset does not exist.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivateAll"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"41807e92-b3b7-4d93-b75d-ee97de3615a7","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivateAll","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivateAll"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"111ccdf1-3e1d-49ad-b9ed-6c2dbbe3734a"},{"name":"Archive Direct Link","id":"1304e679-9bc2-4711-b367-e0cbc3d1384d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/directLinks/:assetId/archive/:directLinkId","description":"

Archive direct link.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directLinks",":assetId","archive",":directLinkId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"0f167bd4-6b9d-44a1-872a-5c78583c2bd0","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"5ee57f41-eb83-4ec7-85bd-2bc66a7fa556","description":{"content":"

(Required) The directlink id.

\n","type":"text/plain"},"type":"any","value":"","key":"directLinkId"}]}},"response":[{"id":"32217c58-c25f-47b3-b02f-4580921c6de5","name":"The direct link was successfully archived.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/archive/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","archive",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"\",\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"linkName\": \"\",\n \"createdAt\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Active\",\n \"modifiedDateTime\": \"\",\n \"uniqueViews\": \"\",\n \"totalViews\": \"\",\n \"totalBandwidth\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"laborum__b\": {}\n },\n \"interpolations\": {\n \"elit_b98\": {},\n \"dolored7\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"230a3c3f-87ac-46f7-94e2-f1495e4f3fe7","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/archive/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","archive",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f500c65b-fa34-465f-9ea1-19b980a63023","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/archive/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","archive",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c55b7f3e-1e63-4670-8756-25c9f3fe4acb","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/archive/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","archive",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6fd491e9-d57b-4484-953d-3f307a5578f5","name":"The direct link for Asset does not exist.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/archive/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","archive",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"47e50898-87f0-47a9-8207-d5439e1ed086","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/archive/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","archive",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1304e679-9bc2-4711-b367-e0cbc3d1384d"},{"name":"Activate Direct Link","id":"bd100197-e52f-4730-ad7e-1488e792b85f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/directLinks/:assetId/activate/:directLinkId","description":"

Activate direct link.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directLinks",":assetId","activate",":directLinkId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"e4e96752-8d01-4541-b5b5-3c967a0dbf23","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"dcc89bf3-2743-4407-b6b7-927417b67afc","description":{"content":"

(Required) The directlink id.

\n","type":"text/plain"},"type":"any","value":"","key":"directLinkId"}]}},"response":[{"id":"0c6e33a4-4cb5-4a1e-aa5d-dca459277075","name":"The direct link was successfully created.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"\",\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"linkName\": \"\",\n \"createdAt\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Active\",\n \"modifiedDateTime\": \"\",\n \"uniqueViews\": \"\",\n \"totalViews\": \"\",\n \"totalBandwidth\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"laborum__b\": {}\n },\n \"interpolations\": {\n \"elit_b98\": {},\n \"dolored7\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"65b7b209-9841-4151-a3dd-4b7d7380e23f","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"90dc0ede-9fda-4ab6-b157-dba165a8973f","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7bff827b-2419-4dfa-a045-d0d4b564fb81","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7e1d0374-91de-49cb-a50b-c74da73acbf0","name":"The direct link for Asset does not exist.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0abebb36-adc4-4e0b-b547-c320795f6878","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/activate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","activate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bd100197-e52f-4730-ad7e-1488e792b85f"},{"name":"Deactivate Direct Link","id":"4196257c-1bf8-4fb4-a0ed-5a57e21f68b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/directLinks/:assetId/deactivate/:directLinkId","description":"

Deactivate direct link.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directLinks",":assetId","deactivate",":directLinkId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"8f078f63-4e8c-4239-8005-f1bf18cba3d7","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"5750c10b-ca89-46d7-af1c-6cdafa55bb58","description":{"content":"

(Required) The directlink id.

\n","type":"text/plain"},"type":"any","value":"","key":"directLinkId"}]}},"response":[{"id":"1ed40e64-aefb-47a6-b60f-10041466f3f0","name":"The direct link was successfully deactivated.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetId\": \"\",\n \"directLinkId\": \"\",\n \"cdnLink\": \"\",\n \"linkName\": \"\",\n \"createdAt\": \"\",\n \"user\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"selectedOptions\": \"\",\n \"state\": \"Active\",\n \"modifiedDateTime\": \"\",\n \"uniqueViews\": \"\",\n \"totalViews\": \"\",\n \"totalBandwidth\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"laborum__b\": {}\n },\n \"interpolations\": {\n \"elit_b98\": {},\n \"dolored7\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"971f7b94-f277-4188-9ae6-64a605dc1142","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"288e9f3d-9719-4160-adb7-320b36354e1c","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"46636a6e-df56-4e73-ae8a-6a82509cf3d5","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"127e23c0-9d03-44a5-bc8f-014a0941534c","name":"The direct link for Asset does not exist.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e3d9b942-a5f0-4260-9565-d3e5407f4064","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directLinks/:assetId/deactivate/:directLinkId","host":["https://api.mediavalet.com"],"path":["directLinks",":assetId","deactivate",":directLinkId"],"variable":[{"key":"assetId"},{"key":"directLinkId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4196257c-1bf8-4fb4-a0ed-5a57e21f68b5"},{"name":"Validate Asset In All Direct Links","id":"87d4e659-c674-4e9f-b35e-705015ffd435","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/directlinks/validate/assets","description":"

Validate assets in all direct links.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks","validate","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"191404c2-7ce9-4e08-9102-74c3e5344994","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/directlinks/validate/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n \"\",\n \"\"\n]"},{"id":"af30d926-8a6d-4ac4-8470-6ba719e767c3","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/directlinks/validate/assets"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"97a8d0fa-914c-4858-b4c1-44dec1ea3eb3","name":"The asset was not found. ","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/directlinks/validate/assets"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ebad07c9-2d08-48db-b8eb-d99dab895d27","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/directlinks/validate/assets"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"87d4e659-c674-4e9f-b35e-705015ffd435"},{"name":"Validate a Direct Link","id":"7c68b33f-ef87-424b-8744-30759ce4220e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/directlinks/:assetId/validate?linkName=","description":"

Validate a direct link.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["directlinks",":assetId","validate"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

(Required) The link name.

\n","type":"text/plain"},"key":"linkName","value":""}],"variable":[{"id":"04b7c297-877d-477a-a1c3-169359663e95","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"3cfc72f6-4512-45c9-8606-797bf2499e99","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId/validate?linkName=","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId","validate"],"query":[{"key":"linkName","value":"","description":"(Required) The link name."}],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"8645a03b-43ca-429b-a91f-e2c1d4c1815c","name":"There was a problem with the data sent with the request. Link name is invalid.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId/validate?linkName=","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId","validate"],"query":[{"key":"linkName","value":"","description":"(Required) The link name."}],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b574ecc2-1ce0-41e4-b7e3-c3ac66c29394","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId/validate?linkName=","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId","validate"],"query":[{"key":"linkName","value":"","description":"(Required) The link name."}],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7062991f-691d-476d-a500-c782b38bbef8","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId/validate?linkName=","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId","validate"],"query":[{"key":"linkName","value":"","description":"(Required) The link name."}],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"03317492-b1c5-4020-a25b-cc714ddf6357","name":"The asset was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId/validate?linkName=","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId","validate"],"query":[{"key":"linkName","value":"","description":"(Required) The link name."}],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3bf4eea4-db57-4308-b056-c006c73836ce","name":"Conflict has occurred. Link name is not unique.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId/validate?linkName=","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId","validate"],"query":[{"key":"linkName","value":"","description":"(Required) The link name."}],"variable":[{"key":"assetId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9f66c1a8-0e11-406c-8235-34199d18a393","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/directlinks/:assetId/validate?linkName=","host":["https://api.mediavalet.com"],"path":["directlinks",":assetId","validate"],"query":[{"key":"linkName","value":"","description":"(Required) The link name."}],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7c68b33f-ef87-424b-8744-30759ce4220e"}],"id":"3dbcb5fe-544f-4145-9c77-59901078bcd8","_postman_id":"3dbcb5fe-544f-4145-9c77-59901078bcd8","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Downloads","item":[{"name":"Retrieve Downloads","id":"127d22c9-19ef-4f9c-8036-35d7c46599c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/downloads","description":"

Returns a collection of all downloads.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["downloads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"352f0814-1f21-4e8c-bccd-cc35c4914023","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/downloads"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"hash\": \"\",\n \"data\": [\n {\n \"id\": \"\",\n \"createdDateTime\": \"\",\n \"fileName\": \"\",\n \"filePath\": \"\",\n \"fileSize\": \"\",\n \"itemCount\": \"\",\n \"processedCount\": \"\",\n \"status\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"mollit44f\": {}\n },\n \"interpolations\": {\n \"consequat78\": {},\n \"do484\": {}\n },\n \"permissions\": [\n \"asset:shareAsCdnLink\",\n \"lightbox:editDetails\"\n ]\n },\n {\n \"id\": \"\",\n \"createdDateTime\": \"\",\n \"fileName\": \"\",\n \"filePath\": \"\",\n \"fileSize\": \"\",\n \"itemCount\": \"\",\n \"processedCount\": \"\",\n \"status\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod_7a\": {}\n },\n \"interpolations\": {\n \"dolor_f\": {},\n \"anim405\": {},\n \"voluptate_52\": {},\n \"incididunta\": {},\n \"cupidatat99\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"asset:createVideoClip\"\n ]\n }\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim_ad0\": {}\n },\n \"interpolations\": {\n \"ullamco_9\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:shareAsZippedFile\"\n ]\n}"},{"id":"6c354dbb-60e4-4ad3-9da0-fdf25b09bba7","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/downloads"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"115cd3fb-5432-4d96-aa94-6e409daf9327","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/downloads"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"41dfbbbd-757a-45e4-b6eb-6e9005e3a257","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/downloads"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"127d22c9-19ef-4f9c-8036-35d7c46599c3"},{"name":"Create Download By Id","id":"c515bcca-0554-4591-a1ab-22fca9e5ba29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads","description":"

Creates a new download.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["downloads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"31a2b9ec-9019-49d8-9167-09fdb9f810e0","name":"OK","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"6091bf42-cac6-4c24-9b38-4572d829f945","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"batchId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ullamco_f_3\": {},\n \"occaecat_192\": {}\n },\n \"interpolations\": {\n \"consectetur_4\": {},\n \"dolore_f5\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:assignCategory\"\n ]\n}"},{"id":"4bc970ca-44fc-4349-a66d-018dd954c2c1","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d71d9768-3608-4bd5-b2ab-86d4fc484b71","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"468c50ee-5fff-42d2-a054-f07552008dd8","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c515bcca-0554-4591-a1ab-22fca9e5ba29"},{"name":"Retrieve Download Detailed Information","id":"233ee0f9-1ef2-452b-9661-9452992811f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/downloads/:id","description":"

Retrieve detailed information for a specific download.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["downloads",":id"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"3cda2ed4-dcb1-44de-b5d6-29dfc858ceb7","description":{"content":"

(Required) The id of the download.

\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"eb9a5c2a-29ba-4cc2-a43a-75d28340d0b5","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"createdDateTime\": \"\",\n \"fileName\": \"\",\n \"filePath\": \"\",\n \"fileSize\": \"\",\n \"itemCount\": \"\",\n \"processedCount\": \"\",\n \"status\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exercitation6\": {},\n \"nulla_bf9\": {}\n },\n \"interpolations\": {\n \"est_c79\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"asset:createVideoClip\"\n ]\n}"},{"id":"0fbbcf06-1277-4304-b091-09738bf7f546","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"087d3c5e-2823-4ad3-a075-d3081656e287","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"555ac7a2-1540-4883-a471-3a00b3083cb1","name":"The download was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5571e349-fc97-4728-8b74-3b7209899797","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"233ee0f9-1ef2-452b-9661-9452992811f1"},{"name":"Create A New Download By Id","id":"23fea069-d93d-4cfe-9dde-a2864d463cd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/:id","description":"

Creates a new download by id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["downloads",":id"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"c112ced9-51c1-44c0-982d-3f59401f1079","description":{"content":"

(Required) The download id.

\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"a18e1722-ce1c-41d1-9ea8-ad5c520f5c06","name":"OK","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"6f477760-011e-4452-aa62-4a3bf59ae4c4","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"sasUrl\": \"\",\n \"errors\": [\n {\n \"fieldId\": \"\",\n \"message\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"message\": \"\"\n }\n ]\n}"},{"id":"a4abb37e-41ca-4799-964d-20a9d78adc76","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8e894381-92d0-4a50-805b-4463ecf104a2","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d0f91435-4588-42e3-b94c-9e1bb950403b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"downloadSettingsPostDetail\": {\n \"allowsAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Unknown\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"Original\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mov\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp4\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Originals\"\n },\n \"csvFormat\": \"\",\n \"csvFileName\": \"\",\n \"zipFileName\": \"\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"23fea069-d93d-4cfe-9dde-a2864d463cd4"},{"name":"Remove Download","id":"1d50740a-bb30-474b-a35d-bf04f0ef8e56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/downloads/:id","description":"

Remove a specific download by download id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["downloads",":id"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"dabe5539-4990-496c-ba14-bb3c245e6e76","description":{"content":"

(Required) The id of the download.

\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"65bf1dec-8c11-4e65-8952-f26fd92a8494","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"bfcbd29b-e159-4db8-a428-57ea2369d9d5","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"00713713-5bdf-42cc-85b5-822a900bac19","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d292e511-5cd2-49b4-81c0-003666f079b9","name":"The download was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a68e8dfb-3ea3-4154-b72d-9a8196c7695e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/downloads/:id","host":["https://api.mediavalet.com"],"path":["downloads",":id"],"variable":[{"key":"id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1d50740a-bb30-474b-a35d-bf04f0ef8e56"},{"name":"Downloads Get Immediate Download Async","id":"ea748e8e-cb28-4546-825e-fbfb520078ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/assets","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["downloads","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"174e16d4-aae4-4416-bcc9-75d0ca96af0f","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"1dea9f30-b5fd-4335-9638-2c78301f8efb","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/assets"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2811b31f-a821-46bf-b70b-b18cb685e7f0","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/assets"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"44445588-26a7-4aa6-91f0-f88754f2dd1c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/assets"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ea748e8e-cb28-4546-825e-fbfb520078ab"},{"name":"Validate Download","id":"2355bb6c-d400-4e8e-a260-472340b5c9e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"isDirectDownload\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/validate","description":"

Validate a download.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["downloads","validate"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"fe40b39b-e2fe-46de-bfc7-e2c7fa2fb47a","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"isDirectDownload\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/validate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"downloadId\": \"\",\n \"downloadLink\": \"\",\n \"preconditions\": [\n \"\",\n \"\"\n ],\n \"settings\": [\n \"\",\n \"\"\n ],\n \"customFormDetails\": {\n \"fieldGroups\": [\n {\n \"groupId\": \"\",\n \"groupName\": \"\",\n \"fields\": [\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\"\n },\n {\n \"label\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\"\n },\n {\n \"label\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ],\n \"defaultAction\": \"\"\n },\n {\n \"groupId\": \"\",\n \"groupName\": \"\",\n \"fields\": [\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\"\n },\n {\n \"label\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\"\n },\n {\n \"label\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ],\n \"defaultAction\": \"\"\n }\n ],\n \"dependencies\": [\n {\n \"dependentGroupId\": \"\",\n \"dependsOnFieldId\": \"\",\n \"dependsOnFieldValue\": \"\",\n \"ruleCondition\": \"\",\n \"action\": \"\"\n },\n {\n \"dependentGroupId\": \"\",\n \"dependsOnFieldId\": \"\",\n \"dependsOnFieldValue\": \"\",\n \"ruleCondition\": \"\",\n \"action\": \"\"\n }\n ]\n }\n}"},{"id":"6dd2addd-4303-4f3c-8354-287002c8598d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"isDirectDownload\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/validate"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8936aa5d-a109-4069-94e9-59ead2226acb","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"isDirectDownload\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/validate"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2355bb6c-d400-4e8e-a260-472340b5c9e2"},{"name":"Downloads Get Asset Urls For Download Async","id":"16c0566c-f762-43b0-972a-e4844da835cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/asseturls","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["downloads","asseturls"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"2e19e4c7-55b2-4506-b796-48321ddb4426","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/asseturls"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"fileName\": \"\",\n \"assetDownloadUrls\": [\n \"\",\n \"\"\n ]\n}"},{"id":"955de42c-5ff9-484b-804c-0c5d4023fe62","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/asseturls"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c09ba914-1323-4e06-8fbb-9d0c40bb7892","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/asseturls"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e8bf51a5-d304-4854-959f-007f4a7c6366","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/asseturls"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5205ce7a-646a-46c7-a62f-b36c34cc0281","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"downloadStartedAt\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/asseturls"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"16c0566c-f762-43b0-972a-e4844da835cb"},{"name":"Create Single Asset Download","id":"59446d10-7d3f-4173-8ff9-8978e58aaca0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"assetId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/downloads/:id/asset","description":"

Create a single asset download by id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["downloads",":id","asset"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"c6f2659f-1a32-4f1e-b970-e66d1e54b4af","description":{"content":"

(Required) The download id

\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"1d53db3b-dc68-4027-beef-2e6283707b41","name":"OK","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"assetId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id/asset","host":["https://api.mediavalet.com"],"path":["downloads",":id","asset"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"edfa7bd1-e653-4cf6-973b-e9ad3eae4dff","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"assetId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id/asset","host":["https://api.mediavalet.com"],"path":["downloads",":id","asset"],"variable":[{"key":"id"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"sasUrl\": \"\",\n \"errors\": [\n {\n \"fieldId\": \"\",\n \"message\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"message\": \"\"\n }\n ]\n}"},{"id":"af656c4b-8225-4a32-a576-4dceb6d957f6","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"assetId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id/asset","host":["https://api.mediavalet.com"],"path":["downloads",":id","asset"],"variable":[{"key":"id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5aed0ffa-3fac-4fee-848f-c78b76bb1f20","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"assetId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id/asset","host":["https://api.mediavalet.com"],"path":["downloads",":id","asset"],"variable":[{"key":"id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7337282f-960f-41a7-9645-e36c5550327f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"attributeIdValues\": [\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n },\n {\n \"fieldId\": \"\",\n \"value\": \"\"\n }\n ],\n \"assetId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/downloads/:id/asset","host":["https://api.mediavalet.com"],"path":["downloads",":id","asset"],"variable":[{"key":"id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"59446d10-7d3f-4173-8ff9-8978e58aaca0"}],"id":"5ad3e3cc-b750-4cd8-8201-eef3028ae14b","_postman_id":"5ad3e3cc-b750-4cd8-8201-eef3028ae14b","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Home","item":[{"name":"Retrieve Json Home Document","id":"314d7ccd-011f-4c9b-94d6-4c49ff741da2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/","description":"

Retrieve a collection of endpoints that are available to authenticated user.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":[""],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"e2899b45-3687-4d0d-a8a0-52e23ef6552f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"functions\": {\n \"etc\": {\n \"rel\": \"\",\n \"href\": \"\",\n \"templated\": \"\",\n \"hints\": {\n \"exercitationeee\": {}\n }\n }\n }\n}"},{"id":"f6cf6c29-caea-4eea-8307-4620e354df72","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"314d7ccd-011f-4c9b-94d6-4c49ff741da2"},{"name":"Home Bulk","id":"bf2e373c-54a5-4022-85a2-06ffa735b0e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.mediavalet.com/bulk","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["bulk"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"a05cbd35-2017-49f3-8062-3d2746a7157a","name":"OK","originalRequest":{"method":"POST","header":[],"url":"https://api.mediavalet.com/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bf2e373c-54a5-4022-85a2-06ffa735b0e9"}],"id":"80ed832d-ac93-4e89-98be-95ecf489325b","_postman_id":"80ed832d-ac93-4e89-98be-95ecf489325b","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Integrations","item":[{"name":"AllowedOrigin","item":[{"name":"List whitelisted origins for an integration","id":"3e1f5050-36cf-44cf-a89b-6d9f5bf7cfc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/allowed-origins?appId=","description":"

Return every origin currently whitelisted in the CSP allowlist for the given ThirdParty integration. Used when embedding the integration in an iframe -- only origins on this list may host the embedding page. Pass the integration's id via the appId query parameter.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","allowed-origins"],"host":["https://api.mediavalet.com"],"query":[{"key":"appId","value":""}],"variable":[]}},"response":[],"_postman_id":"3e1f5050-36cf-44cf-a89b-6d9f5bf7cfc4"},{"name":"Remove one or more allowed origins","id":"83b53bfe-93ce-4e54-a0c2-7166afeb2c06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"ids\": [\n \"00000000-0000-0000-0000-000000000000\"\n ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/allowed-origins/batch","description":"

Remove origins by id. Pass a single-element array to remove just one. Only origins belonging to the calling tenant are affected. Response payload.removed is the count of origins removed.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","allowed-origins","batch"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"83b53bfe-93ce-4e54-a0c2-7166afeb2c06"},{"name":"Whitelist an origin for an integration","id":"220f3f07-30c2-4e6f-821e-99ab45978a82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"appId\": \"00000000-0000-0000-0000-000000000000\",\n \"origin\": \"https://your-app.example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/allowed-origins","description":"

Add an origin (scheme + host + optional port) to the CSP allowlist for a ThirdParty integration. The change takes effect immediately -- no cache propagation delay. The response payload is the new allowed-origin id (UUID).

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","allowed-origins"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"220f3f07-30c2-4e6f-821e-99ab45978a82"}],"id":"e8482e5f-8e3f-441c-81da-bc70bbad5d10","_postman_id":"e8482e5f-8e3f-441c-81da-bc70bbad5d10","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"App","item":[{"name":"Delete a ThirdParty integration","id":"9723f054-383d-4ff7-8ca2-51b32a091a90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/apps/:id","description":"

Delete a ThirdParty integration owned by your tenant. Returns 404 if the integration doesn't exist or isn't owned by your tenant. Native integrations cannot be deleted via this endpoint.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","apps",":id"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"2cff4862-29b4-45e1-999b-938c7f6acc9f","type":"any","value":"","key":"id"}]}},"response":[],"_postman_id":"9723f054-383d-4ff7-8ca2-51b32a091a90"},{"name":"List your tenant's integrations","id":"f211d571-4833-4a0e-8438-d303c4eeb99d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/apps/tenant","description":"

Return every integration registered to the calling tenant -- both Native (MediaValet-managed: Drupal, WordPress, Monday) and ThirdParty (customer-registered). The response payload is an array of integration objects; recordCount.totalRecordsFound is the total.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","apps","tenant"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f211d571-4833-4a0e-8438-d303c4eeb99d"},{"name":"Register a new ThirdParty integration","id":"95cc7ce4-504a-49a1-b6d1-05f9c20a3b0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"appName\": \"My ThirdParty Integration\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/apps","description":"

Create a new ThirdParty integration for your tenant. Only appName is required in the request body; the other fields (appDescription, iconUrl, currentVersion) are optional partner-facing labels. The response payload.id is the new integration's identifier -- use it as the appId parameter on subsequent calls to manage allowed origins, subscriptions, and user entitlements.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","apps"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"95cc7ce4-504a-49a1-b6d1-05f9c20a3b0a"},{"name":"Rename a ThirdParty integration","id":"117a5fe6-d413-4b6c-9008-5531892bc5ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"appName\": \"My ThirdParty Integration (renamed)\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/apps/:id/name","description":"

Rename a ThirdParty integration. Native integrations cannot be renamed. Returns the updated integration in the response payload.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","apps",":id","name"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f633b16e-c013-40e1-86d7-a9d8c87e2e53","type":"any","value":"","key":"id"}]}},"response":[],"_postman_id":"117a5fe6-d413-4b6c-9008-5531892bc5ce"}],"id":"5590ed41-fb0a-41b0-b822-d2515d50e2f2","_postman_id":"5590ed41-fb0a-41b0-b822-d2515d50e2f2","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Subscription","item":[{"name":"Get active subscription for an integration","id":"c3a3fb6d-d3c0-4a74-a72e-f54dc3351971","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/subscriptions/app/:appId/tenant","description":"

Return the active subscription for the given integration + the calling tenant. Returns 404 if no active subscription exists. Used by license-management UIs to display subscription details.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","subscriptions","app",":appId","tenant"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f9c6610d-332a-4bb5-905b-19eefffa3bac","type":"any","value":"","key":"appId"}]}},"response":[],"_postman_id":"c3a3fb6d-d3c0-4a74-a72e-f54dc3351971"},{"name":"Get entitlement counts for a subscription","id":"daa0303c-e68e-49b1-972f-48eccd74805e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/subscriptions/:id/count","description":"

Return active-vs-total entitlement counts for a subscription. Useful for license-management dashboards that show how many seats are in use out of the total licensed.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","subscriptions",":id","count"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"e061eaf7-6568-4897-9487-cab0f21494d7","type":"any","value":"","key":"id"}]}},"response":[],"_postman_id":"daa0303c-e68e-49b1-972f-48eccd74805e"}],"id":"59a96d73-fcdb-4fbe-998e-4df89ae4e206","_postman_id":"59a96d73-fcdb-4fbe-998e-4df89ae4e206","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"User","item":[{"name":"Invite a user into your tenant","id":"c5f6f0ad-6629-4ed4-8111-3b42716ec62e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"userList\": [\n {\n \"username\": \"partner.user\",\n \"firstName\": \"Partner\",\n \"lastName\": \"User\",\n \"email\": \"partner.user@example.com\",\n \"subscriptionId\": \"00000000-0000-0000-0000-000000000000\"\n }\n ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/users","description":"

Create a new MediaValet user in your tenant. The user receives an invite email and completes onboarding via the standard MediaValet sign-up flow.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","users"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5f6f0ad-6629-4ed4-8111-3b42716ec62e"}],"id":"bbfd62e1-0e0c-4ba4-85c3-855e70ab24d5","_postman_id":"bbfd62e1-0e0c-4ba4-85c3-855e70ab24d5","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"UserEntitlement","item":[{"name":"List user entitlements in a subscription","id":"21eb2b54-047c-4fcb-884b-d90c9f8fbbcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/integrations/user-entitlement/subscription/:subscriptionId","description":"

Return every user entitlement belonging to the given subscription. Each entitlement maps one user to one subscription with a role and an active/inactive flag.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","user-entitlement","subscription",":subscriptionId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"1ac7f341-340a-4f28-8d2f-28684ba293da","type":"any","value":"","key":"subscriptionId"}]}},"response":[],"_postman_id":"21eb2b54-047c-4fcb-884b-d90c9f8fbbcc"},{"name":"Update a user entitlement","id":"64c0b206-96e9-402b-bb76-86d5d72cbb24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2"},{"key":"Ocp-Apim-Subscription-Key","value":""},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"userEntitlementList\": [\n {\n \"entitlementId\": \"00000000-0000-0000-0000-000000000000\",\n \"status\": \"active\"\n }\n ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/integrations/user-entitlement","description":"

Update an existing user entitlement -- toggle the active flag, change the role, etc. The entitlementId field identifies the entitlement to update.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["integrations","user-entitlement"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"64c0b206-96e9-402b-bb76-86d5d72cbb24"}],"id":"ee5e5faf-937d-446d-a96c-9eaac851380c","_postman_id":"ee5e5faf-937d-446d-a96c-9eaac851380c","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}}],"id":"4ae48dc8-45c2-4f0a-a913-8ae1b1dd34f0","description":"

The 12 endpoints exposed via api.mediavalet.com/integrations. Each sub-folder groups requests by resource (App, AllowedOrigin, Subscription, UserEntitlement, User) following the OpenAPI tags.

\n","_postman_id":"4ae48dc8-45c2-4f0a-a913-8ae1b1dd34f0","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"IntroductionAndHelp","item":[{"name":"Retrieve Introduction And Help","id":"53905dbc-28e5-45fb-a0d3-e55f80965b3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/introductionAndHelp","description":"

Returns assets that are used to help and introduce user to the DAM.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["introductionAndHelp"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"9c677fef-db83-45a0-811e-a8229608f56c","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/introductionAndHelp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"file\": {\n \"fileName\": \"\"\n },\n \"media\": {\n \"download\": \"\",\n \"large\": \"\",\n \"small\": \"\",\n \"stream\": \"\",\n \"streamingmanifesthls\": \"\",\n \"streamingmanifestdash\": \"\",\n \"type\": \"\"\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor_8\": {}\n },\n \"interpolations\": {\n \"consecteturf\": {},\n \"iruree\": {},\n \"voluptate_ee\": {},\n \"nostrude\": {},\n \"essebca\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"lightbox:share\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"file\": {\n \"fileName\": \"\"\n },\n \"media\": {\n \"download\": \"\",\n \"large\": \"\",\n \"small\": \"\",\n \"stream\": \"\",\n \"streamingmanifesthls\": \"\",\n \"streamingmanifestdash\": \"\",\n \"type\": \"\"\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"anim_8a_\": {},\n \"sinte\": {}\n },\n \"interpolations\": {\n \"et_d6\": {},\n \"eu7d\": {},\n \"iruree7_\": {},\n \"occaecat_e5\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n ]\n}"},{"id":"f8aaa101-d16a-43c6-b258-2fdb7d306c64","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/introductionAndHelp"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"53905dbc-28e5-45fb-a0d3-e55f80965b3c"}],"id":"56c29bfc-b4b9-4bdc-b4b9-ad43373e139b","_postman_id":"56c29bfc-b4b9-4bdc-b4b9-ad43373e139b","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"KeywordGroups","item":[{"name":"Retrieve All Keyword Groups","id":"7c1786f3-faf3-4471-8f75-da73622a7e5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/keywordGroups","description":"

Returns a collection of keyword groups.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["keywordGroups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"3e7039ba-c3d4-43aa-a551-9fc67b1e0201","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/keywordGroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud8\": {},\n \"eta0\": {}\n },\n \"interpolations\": {\n \"Excepteur7\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsCdnLink\"\n ]\n },\n {\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud_e0\": {},\n \"labore_d1_\": {}\n },\n \"interpolations\": {\n \"mollit856\": {},\n \"tempor_741\": {},\n \"ad_90\": {},\n \"incididunt_4\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"lightbox:editDetails\"\n ]\n }\n]"},{"id":"8a59c2ad-80e0-41ef-af9c-7232fb051a5e","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/keywordGroups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"37013c8b-08c4-4872-9bfe-5a3d28ba86f3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/keywordGroups"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7c1786f3-faf3-4471-8f75-da73622a7e5b"},{"name":"Create A Keyword Group","id":"d82e86c2-7e59-42a1-a6c0-3df51f518812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim6e\": {},\n \"aute6b2\": {}\n },\n \"interpolations\": {\n \"minim069\": {},\n \"culpa_226\": {},\n \"qui_8\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:transferOwnership\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywordGroups","description":"

Creates a keyword group in the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["keywordGroups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"1ead7cd6-0534-4524-8510-41ae0e6ff248","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim6e\": {},\n \"aute6b2\": {}\n },\n \"interpolations\": {\n \"minim069\": {},\n \"culpa_226\": {},\n \"qui_8\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:transferOwnership\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywordGroups"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim6e\": {},\n \"aute6b2\": {}\n },\n \"interpolations\": {\n \"minim069\": {},\n \"culpa_226\": {},\n \"qui_8\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"586cfe17-b21e-415c-8f78-1f89bd6a7008","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim6e\": {},\n \"aute6b2\": {}\n },\n \"interpolations\": {\n \"minim069\": {},\n \"culpa_226\": {},\n \"qui_8\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:transferOwnership\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywordGroups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b5a63461-d3b5-4a89-9e2c-004bcc767788","name":"Conflict has occurred. Group name already exist.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim6e\": {},\n \"aute6b2\": {}\n },\n \"interpolations\": {\n \"minim069\": {},\n \"culpa_226\": {},\n \"qui_8\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:transferOwnership\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywordGroups"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ff320164-c6f5-4d8a-9dbc-0635108e86da","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim6e\": {},\n \"aute6b2\": {}\n },\n \"interpolations\": {\n \"minim069\": {},\n \"culpa_226\": {},\n \"qui_8\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:transferOwnership\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywordGroups"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d82e86c2-7e59-42a1-a6c0-3df51f518812"},{"name":"Retrieve Keyword Groups By Parent Keyword Group Id","id":"9b395592-c81f-4812-90b6-b0cccc935c4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/keywordGroups/:keywordGroupId/subGroups","description":"

Returns all keyword groups for the parent keyword group.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["keywordGroups",":keywordGroupId","subGroups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"21650c95-106b-42c6-b0da-2181787af898","description":{"content":"

(Required) The parent keyword group id.

\n","type":"text/plain"},"type":"any","value":"","key":"keywordGroupId"}]}},"response":[{"id":"083db577-dc0e-47c2-af40-7955d20f171b","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId/subGroups","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId","subGroups"],"variable":[{"key":"keywordGroupId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud8\": {},\n \"eta0\": {}\n },\n \"interpolations\": {\n \"Excepteur7\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsCdnLink\"\n ]\n },\n {\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud_e0\": {},\n \"labore_d1_\": {}\n },\n \"interpolations\": {\n \"mollit856\": {},\n \"tempor_741\": {},\n \"ad_90\": {},\n \"incididunt_4\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"lightbox:editDetails\"\n ]\n }\n]"},{"id":"528715ca-354e-44d5-a385-e47619d881e8","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId/subGroups","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId","subGroups"],"variable":[{"key":"keywordGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"575da07f-9ade-4539-9c42-c722c531c3e5","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId/subGroups","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId","subGroups"],"variable":[{"key":"keywordGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9b395592-c81f-4812-90b6-b0cccc935c4f"},{"name":"Remove Keyword Group","id":"4ac5f6ac-f1fa-406f-b758-f3ca78d7f2ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/keywordGroups/:keywordGroupId","description":"

Removes a keyword group from the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["keywordGroups",":keywordGroupId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"06496386-931b-4566-8ca7-9ff8cd98b20d","description":{"content":"

(Required) The keyword group id.

\n","type":"text/plain"},"type":"any","value":"","key":"keywordGroupId"}]}},"response":[{"id":"f64e7c71-cdd3-4d53-8434-4cddc817adb0","name":"No Content, Request was successful Response is null.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId"],"variable":[{"key":"keywordGroupId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e8a65481-d9a1-4d93-afd1-f076507fc55a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId"],"variable":[{"key":"keywordGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2ff95b77-b575-46a5-a850-c349adbc356e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId"],"variable":[{"key":"keywordGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4ac5f6ac-f1fa-406f-b758-f3ca78d7f2ae"},{"name":"Update Keyword Group","id":"0dd97048-23b6-4a7d-a964-4a057a1196db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywordGroups/:keywordGroupId","description":"

Updates a keyword group in the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["keywordGroups",":keywordGroupId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"0dbdb0c0-6593-4532-ba61-49069e6f9a38","description":{"content":"

(Required) The keyword group id.

\n","type":"text/plain"},"type":"any","value":"","key":"keywordGroupId"}]}},"response":[{"id":"81959305-b64d-418b-a252-456abdf5a91f","name":"Request was accepted.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId"],"variable":[{"key":"keywordGroupId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"groupKeywordCount\": \"\",\n \"groupTreePath\": \"\",\n \"name\": \"\",\n \"keywordsInGroup\": \"\",\n \"subGroupCount\": \"\",\n \"parentId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim6e\": {},\n \"aute6b2\": {}\n },\n \"interpolations\": {\n \"minim069\": {},\n \"culpa_226\": {},\n \"qui_8\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"9e8a2ae8-9190-4d36-b16e-aee441c74a68","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId"],"variable":[{"key":"keywordGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f420e495-454f-45be-8455-cbddbefdf95a","name":"Conflict has occurred.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId"],"variable":[{"key":"keywordGroupId"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f6e71682-1585-46ca-8f79-e13a828ca3f5","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/keywordGroups/:keywordGroupId","host":["https://api.mediavalet.com"],"path":["keywordGroups",":keywordGroupId"],"variable":[{"key":"keywordGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0dd97048-23b6-4a7d-a964-4a057a1196db"}],"id":"fcc85277-96bd-4c39-9c16-eb8106ff4a7b","_postman_id":"fcc85277-96bd-4c39-9c16-eb8106ff4a7b","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Keywords","item":[{"name":"Retrieve Keywords","id":"3d7cd719-3405-4b8c-86db-5e2905d64e29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/keywords","description":"

Returns all keywords in library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["keywords"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"21807d04-5daf-4e49-b451-324d761660ed","name":"Request was accepted.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/keywords"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"keywordName\": \"\",\n \"isSearchable\": \"\",\n \"isApproved\": \"\",\n \"groupName\": \"\",\n \"groupPath\": \"\",\n \"approvedAt\": \"\",\n \"approvedBy\": \"\",\n \"requestedAt\": \"\",\n \"approvalStatus\": \"\",\n \"requestedBy\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sit0\": {},\n \"consecteturcc\": {},\n \"officia_3f\": {},\n \"irure_e\": {}\n },\n \"interpolations\": {\n \"dolore99c\": {},\n \"voluptate__b\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"asset:shareAsLightbox\"\n ]\n },\n {\n \"id\": \"\",\n \"keywordName\": \"\",\n \"isSearchable\": \"\",\n \"isApproved\": \"\",\n \"groupName\": \"\",\n \"groupPath\": \"\",\n \"approvedAt\": \"\",\n \"approvedBy\": \"\",\n \"requestedAt\": \"\",\n \"approvalStatus\": \"\",\n \"requestedBy\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sit_c\": {}\n },\n \"interpolations\": {\n \"elitfb5\": {},\n \"temporb4\": {},\n \"suntb\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"149edce6-6fdc-4b27-9d3b-75a397be6fb2","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/keywords"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f2850668-c52a-4a2a-89c0-3047ab0a4d9a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/keywords"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3d7cd719-3405-4b8c-86db-5e2905d64e29"},{"name":"Create Keyword","id":"d483327d-aa5a-494e-a726-c15eafa9ac44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywords","description":"

Creates a keyword in the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["keywords"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"4ee5264d-fdfe-469c-b888-d70bb5a6b7ac","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywords"},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3d511ca9-6a4b-4296-be73-dc20bb873de5","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywords"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9eef67c6-7263-408f-844c-72f928d11059","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywords"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d483327d-aa5a-494e-a726-c15eafa9ac44"},{"name":"Update Keyword","id":"b81e49bc-bc2f-4f25-952e-3dd0cdf1d581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/keywords/:keyword","description":"

Update a keyword.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["keywords",":keyword"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"e8d2b1f6-6a36-4087-9ac3-f4a092f02aa8","description":{"content":"

(Required) The keyword.

\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"8fad732d-0697-4d65-ac4a-1cfcbb3b5852","name":"Request was accepted.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/keywords/:keyword","host":["https://api.mediavalet.com"],"path":["keywords",":keyword"],"variable":[{"key":"keyword"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"keywordName\": \"\",\n \"isSearchable\": \"\",\n \"isApproved\": \"\",\n \"groupName\": \"\",\n \"groupPath\": \"\",\n \"approvedAt\": \"\",\n \"approvedBy\": \"\",\n \"requestedAt\": \"\",\n \"approvalStatus\": \"\",\n \"requestedBy\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"magna_ca\": {},\n \"velit__7\": {},\n \"minim_6c\": {}\n },\n \"interpolations\": {\n \"pariatur7d4\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:createVideoClip\"\n ]\n}"},{"id":"98ffa604-26f2-47c0-a543-96e0dc1be2b1","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/keywords/:keyword","host":["https://api.mediavalet.com"],"path":["keywords",":keyword"],"variable":[{"key":"keyword"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2ac063a7-27c5-4b13-9d0c-4004467cd9b5","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/keywords/:keyword","host":["https://api.mediavalet.com"],"path":["keywords",":keyword"],"variable":[{"key":"keyword"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b81e49bc-bc2f-4f25-952e-3dd0cdf1d581"}],"id":"4e2b7e28-79fb-485f-a604-80081844af75","_postman_id":"4e2b7e28-79fb-485f-a604-80081844af75","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Lightbox","item":[{"name":"Retrieve Lightbox Assets","id":"b739968e-7178-4c8a-b8d0-c6138ea2d465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","description":"

Retrieves the assets for a given lightbox id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"550e218e-c054-404e-8118-c1d2b8e751bf","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"a21b96cd-d135-4f3e-958c-b04e1d104a25","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ex5\": \"\",\n \"est60\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"quis__f\": \"\",\n \"dolore37\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"do35\": {},\n \"veniamd64\": {}\n },\n \"interpolations\": {\n \"laboris_f4_\": {},\n \"ea_c9e\": {},\n \"pariaturd\": {},\n \"labore_8b\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"None\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ut_e\": \"\",\n \"velitc5a\": \"\",\n \"do_897\": \"\",\n \"nisi__b\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"amet_9f\": \"\",\n \"occaecatf66\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor_2\": {}\n },\n \"interpolations\": {\n \"aliqua9c\": {},\n \"deserunt_6\": {},\n \"commodo699\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"lightbox:transferOwnership\"\n ]\n }\n ]\n}"},{"id":"22f0f1cb-c995-44d9-ba64-89c130ebfbff","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ebe915b8-8324-44b1-91d7-aa60644a20f7","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"720f7571-ed77-46b8-b488-23e8c51498fb","name":"The lightbox was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"38029448-614b-4d8e-a7e3-0c90be1a6750","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b739968e-7178-4c8a-b8d0-c6138ea2d465"},{"name":"Create Lightbox Association With Assets","id":"aaab3e94-f23c-4bd2-8b43-5a67069c0005","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","description":"

Add a set of assets to the lightbox.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"b7818b98-11cc-404d-bc57-75dc41bbed9e","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"70988513-82a0-4062-9bcb-5efea96497ea","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n \"\",\n \"\"\n]"},{"id":"0330a19e-d1a2-426d-8238-1d827d1d692d","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cb5315fa-2bb8-410a-8054-3fac54525943","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"91e1e87a-6f11-40a8-85f4-3d0d03713b37","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"aaab3e94-f23c-4bd2-8b43-5a67069c0005"},{"name":"Remove Assets From Lightbox","id":"3861af19-b186-4b02-91eb-7f5c8de6e394","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","description":"

Removes a set of assets from a given lightbox.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"8b378dd7-ce65-4538-8375-60a9f2dfbbd6","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"d8213f88-ccf8-4b48-9e57-2ed2330ca886","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n \"\",\n \"\"\n]"},{"id":"d3ec50a0-df21-4a8e-9050-51c993e70b0f","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f7f99fa1-e8fc-48e1-8096-a86cee514202","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4c42ce76-92d6-4ea8-a616-9a1abf34fe29","name":"The lightbox was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5815c809-9d6c-490c-89a0-e17cf943dba8","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3861af19-b186-4b02-91eb-7f5c8de6e394"},{"name":"Retrieve Lightboxes For Approval","id":"935e014f-89e6-4657-805a-3a51416582c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/lightboxes/lightboxesForApproval","description":"

Retrieves list of lightboxes for approval.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes","lightboxesForApproval"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"4e263393-5c3d-4e20-a278-4c2d56497277","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/lightboxes/lightboxesForApproval"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sitf\": {},\n \"velit6\": {}\n },\n \"interpolations\": {\n \"labore80\": {},\n \"fugiat96\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"user:editEmail\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"aliquip_49\": {}\n },\n \"interpolations\": {\n \"do_715\": {},\n \"dolore_2\": {},\n \"nisi751\": {},\n \"quisec\": {},\n \"ut_8\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:createImageCrop\"\n ]\n }\n]"},{"id":"abeba253-9b5a-4854-850c-bc2fb1e21f14","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/lightboxes/lightboxesForApproval"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5a78ba63-0643-4b05-94a7-dfc09a2a9a82","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/lightboxes/lightboxesForApproval"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8bce31c2-44d4-4b96-9a56-320a2796e721","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/lightboxes/lightboxesForApproval"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"935e014f-89e6-4657-805a-3a51416582c7"},{"name":"Return all policies of a Lightbox","id":"679b8530-40c5-4eca-a1f6-c944bb6183f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","description":"

Only Lightbox owner can get policies.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId","policies"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"a7a75dfc-a9d7-4a4f-9f37-4b4410cacbda","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"d5d1603e-0eb6-4bfc-aa5d-f65bfed68d10","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim_9cb\": {},\n \"officia_f\": {},\n \"deserunt_df\": {},\n \"dolor810\": {}\n },\n \"interpolations\": {\n \"eiusmode2f\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"9e77dbe9-5696-43b0-b543-00cff393aa1a","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1bf8ac42-9a61-4774-a499-9241237a506b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"91b4cebd-23cc-4d6a-a278-4a2fd9c9a9ec","name":"The lightbox was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"02331635-71e8-4a98-9628-4933f79c1ac1","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"679b8530-40c5-4eca-a1f6-c944bb6183f3"},{"name":"Lightbox Update Lightbox Policies","id":"5f9849a4-9583-4c63-97a8-233766456242","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId","policies"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"2aee8b44-717d-48cb-8308-638052af14a4","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"b2fd2ed0-2ae7-40f5-85d3-b53047f6d508","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a3b75f97-ab8a-4af5-ad4c-e7783c0cc9f9","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1418d249-b152-40bb-b195-66f00e766eee","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"85fcb504-511a-440a-9b71-17961f4bc3e3","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"82d07cb0-e014-4e58-916d-0238d8112bd1","name":"The lightbox was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"27f85cc8-daa6-4555-9fee-bd2353675ee6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"policyUpdateRequestId\": \"\",\n \"reasonForChange\": \"\",\n \"addedPolicies\": [\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n },\n {\n \"policyId\": \"\",\n \"subject\": {\n \"subjectId\": \"\",\n \"subjectType\": \"\"\n },\n \"resource\": {\n \"resourceId\": \"\",\n \"resourceType\": \"\",\n \"predicate\": {\n \"predicateType\": \"\",\n \"predicateId\": \"\",\n \"predicateValues\": \"\"\n },\n \"inherited\": \"\"\n },\n \"grant\": {\n \"grantType\": \"\",\n \"grantName\": \"\",\n \"allowed\": \"\"\n }\n }\n ],\n \"removedPolicies\": [\n \"\",\n \"\"\n ],\n \"notification\": {\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"Category\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/policies","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","policies"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5f9849a4-9583-4c63-97a8-233766456242"},{"name":"Retrieve Lightboxes","id":"a9b54961-4ea5-4993-8be2-dadeb4ec02c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/lightboxes?includePermissions=false","description":"

Retrieves all lightboxes.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes"],"host":["https://api.mediavalet.com"],"query":[{"key":"includePermissions","value":"false"}],"variable":[]}},"response":[{"id":"3e3fa646-22c4-4edc-a66e-d36f42ae61f0","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/lightboxes?includePermissions=false","host":["https://api.mediavalet.com"],"path":["lightboxes"],"query":[{"key":"includePermissions","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sitf\": {},\n \"velit6\": {}\n },\n \"interpolations\": {\n \"labore80\": {},\n \"fugiat96\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"user:editEmail\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"aliquip_49\": {}\n },\n \"interpolations\": {\n \"do_715\": {},\n \"dolore_2\": {},\n \"nisi751\": {},\n \"quisec\": {},\n \"ut_8\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:createImageCrop\"\n ]\n }\n]"},{"id":"d4eb68ea-cad0-40bd-9a36-76514f03864e","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes?includePermissions=false","host":["https://api.mediavalet.com"],"path":["lightboxes"],"query":[{"key":"includePermissions","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a91c75b2-e928-4806-bf18-575535bdc652","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes?includePermissions=false","host":["https://api.mediavalet.com"],"path":["lightboxes"],"query":[{"key":"includePermissions","value":"false"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4710662b-2abb-4571-b6f8-63932e9ca094","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes?includePermissions=false","host":["https://api.mediavalet.com"],"path":["lightboxes"],"query":[{"key":"includePermissions","value":"false"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a9b54961-4ea5-4993-8be2-dadeb4ec02c2"},{"name":"Create Lightbox","id":"de10e8ff-b569-4c4a-92b1-009815831eef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes","description":"

Creates a new lightbox.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"81692cf8-78cc-448a-9a06-e4ce55cce7ac","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim_9cb\": {},\n \"officia_f\": {},\n \"deserunt_df\": {},\n \"dolor810\": {}\n },\n \"interpolations\": {\n \"eiusmode2f\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"8660d2f9-19eb-416e-81de-6f58873ccf83","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"628f7ef2-ca57-4c1b-b45e-da6a00eb6571","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ccc27ac6-69cd-439a-9b2e-10a8ac64d5dc","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fc80c8df-fbb6-4fa9-8fd1-c7cd999b05bc","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"de10e8ff-b569-4c4a-92b1-009815831eef"},{"name":"Retrieve Assets From Lightbox For Approval","id":"a90cc52d-404d-408f-92af-a8e7d680bc3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/lightboxes/lightboxesForApproval/:lightboxId/assets","description":"

Retrieves the assets from a specific lightbox for approval.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes","lightboxesForApproval",":lightboxId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"679be0f1-2d8d-4541-aa5d-75face827e84","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"a4390528-98da-400c-9638-cb939f1476d9","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/lightboxes/lightboxesForApproval/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes","lightboxesForApproval",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ex5\": \"\",\n \"est60\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"quis__f\": \"\",\n \"dolore37\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"do35\": {},\n \"veniamd64\": {}\n },\n \"interpolations\": {\n \"laboris_f4_\": {},\n \"ea_c9e\": {},\n \"pariaturd\": {},\n \"labore_8b\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"None\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ut_e\": \"\",\n \"velitc5a\": \"\",\n \"do_897\": \"\",\n \"nisi__b\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"amet_9f\": \"\",\n \"occaecatf66\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor_2\": {}\n },\n \"interpolations\": {\n \"aliqua9c\": {},\n \"deserunt_6\": {},\n \"commodo699\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"lightbox:transferOwnership\"\n ]\n }\n ]\n}"},{"id":"709491b2-477f-4dff-80c5-69c4712feba7","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/lightboxesForApproval/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes","lightboxesForApproval",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3c51d6c4-545d-4685-8593-07bc09ed7bec","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/lightboxesForApproval/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes","lightboxesForApproval",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5a3c14f0-68c0-4932-9fdb-d0ccdbc7b07f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/lightboxesForApproval/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["lightboxes","lightboxesForApproval",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a90cc52d-404d-408f-92af-a8e7d680bc3c"},{"name":"Retrieve Lightbox","id":"b0aee1ca-457f-49f4-93cd-a93792a01a28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/lightboxes/:lightboxId?includePermissions=false","description":"

Retrieves lightbox for a given lightbox id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId"],"host":["https://api.mediavalet.com"],"query":[{"key":"includePermissions","value":"false"}],"variable":[{"id":"d9f5c5ab-b4ff-403a-970d-94e8132fc62c","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"3e52322b-3554-45f8-bef2-dae6aecfac58","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId?includePermissions=false","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"query":[{"key":"includePermissions","value":"false"}],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim_9cb\": {},\n \"officia_f\": {},\n \"deserunt_df\": {},\n \"dolor810\": {}\n },\n \"interpolations\": {\n \"eiusmode2f\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"5786617d-242e-430a-939b-302fabebc9f6","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId?includePermissions=false","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"query":[{"key":"includePermissions","value":"false"}],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d00c752e-6167-4a74-a9fe-027644f20c6e","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId?includePermissions=false","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"query":[{"key":"includePermissions","value":"false"}],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"14f63ab0-ba99-409b-871f-78c8277cdaed","name":"The lightbox was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId?includePermissions=false","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"query":[{"key":"includePermissions","value":"false"}],"variable":[{"key":"lightboxId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"90837dc6-cde6-4b9a-834d-fc2ee8acd69d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId?includePermissions=false","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"query":[{"key":"includePermissions","value":"false"}],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b0aee1ca-457f-49f4-93cd-a93792a01a28"},{"name":"Update Lightbox","id":"0e85d4c6-1a94-4624-bf49-8ba818842363","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes/:lightboxId","description":"

Updates the lightbox details.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"291a99f9-61bb-4ece-b945-11d22c62e648","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"0212d06d-055d-4e44-8f19-2a27b311f490","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim_9cb\": {},\n \"officia_f\": {},\n \"deserunt_df\": {},\n \"dolor810\": {}\n },\n \"interpolations\": {\n \"eiusmode2f\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"2ddabda3-715f-4c2f-89c0-2883c8eaaf7b","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f778e6e9-2ebe-4b71-89e6-4aa82185f2da","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d50b249b-62b9-4f7f-b589-515c6df75328","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0e85d4c6-1a94-4624-bf49-8ba818842363"},{"name":"Remove Lightbox","id":"53987306-08e7-4d00-bdeb-a260a2023abd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/lightboxes/:lightboxId","description":"

Removes a given lightbox id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"54f17eb8-d080-4ed0-99e2-bfb2db581e4b","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"6c3f0823-1e17-4788-b7bc-216fc7b83c52","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b5fb8854-a4a2-4ce7-b4ac-18e9dd8a885e","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a2a486a1-7ec7-462e-acf2-86d69d5173f1","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"158fe68f-3851-466c-8e0c-03837ce72002","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"53987306-08e7-4d00-bdeb-a260a2023abd"},{"name":"Update Lightbox","id":"bed7753c-c4ee-4b34-b29a-869c136d3f3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/lightboxes/:lightboxId","description":"

Update lightbox with a list of patch operations.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"c7ad7b50-5528-4e0f-afa8-e708bdd3c388","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"e659ae90-0bd1-4f1b-9c4a-941709345276","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim_9cb\": {},\n \"officia_f\": {},\n \"deserunt_df\": {},\n \"dolor810\": {}\n },\n \"interpolations\": {\n \"eiusmode2f\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"df864ccc-5aa0-4c13-84b4-8dad683d71bf","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7bd87f11-3acd-4576-816e-bb3bf4d4c872","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"69842bc2-f1bc-4c31-b3a4-14fb34395baa","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bed7753c-c4ee-4b34-b29a-869c136d3f3d"},{"name":"Unlink current user from a Lightbox","id":"6e4de79b-ec2a-434c-90c8-f7300c26f21a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/lightboxes/:lightboxId/users/current","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId","users","current"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"7d264fc6-00f9-40b6-ba86-93b3104fc09d","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"9c3b122c-f0fc-474a-beb8-d0fce0ccce7c","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/users/current","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","users","current"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"enim_9cb\": {},\n \"officia_f\": {},\n \"deserunt_df\": {},\n \"dolor810\": {}\n },\n \"interpolations\": {\n \"eiusmode2f\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"bd48c04b-fb01-426d-9e85-efc88fbc4dc8","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/users/current","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","users","current"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cf775efd-cf53-4952-ad18-ffdf3d523ff5","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/users/current","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","users","current"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0ab7f9af-79fb-49f5-997e-f83e37e35e09","name":"The lightbox was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/users/current","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","users","current"],"variable":[{"key":"lightboxId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fbb32c32-e7aa-4907-802f-d0f78a126100","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/users/current","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","users","current"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6e4de79b-ec2a-434c-90c8-f7300c26f21a"},{"name":"Remove Asset From Lightbox","id":"64a840fc-4ed2-4388-b840-45b2aeebc0b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/lightboxes/:lightboxId/assets/:assetId","description":"

Removes an asset from a given lightbox.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["lightboxes",":lightboxId","assets",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"6b5a9238-1e8f-429f-b628-6bbb28777453","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"},{"id":"e8427cfe-65ba-42ff-8a7c-2c028a9e4222","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"f131ea5d-d560-451f-965c-bbf19bd8bbab","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets/:assetId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets",":assetId"],"variable":[{"key":"lightboxId"},{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9c403f5c-b165-4036-88a2-5dea0a7f10fe","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets/:assetId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets",":assetId"],"variable":[{"key":"lightboxId"},{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"bbe5b8d1-5abe-4ee4-bf8f-2af731f8f9f2","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets/:assetId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets",":assetId"],"variable":[{"key":"lightboxId"},{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eb54ea76-42a3-4ace-9569-3295cc28de76","name":"The lightbox was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets/:assetId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets",":assetId"],"variable":[{"key":"lightboxId"},{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1c413558-788f-4055-ada9-0cf69da54de5","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/lightboxes/:lightboxId/assets/:assetId","host":["https://api.mediavalet.com"],"path":["lightboxes",":lightboxId","assets",":assetId"],"variable":[{"key":"lightboxId"},{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"64a840fc-4ed2-4388-b840-45b2aeebc0b3"}],"id":"f0c32133-35b2-42c4-9492-ff517cc38b65","_postman_id":"f0c32133-35b2-42c4-9492-ff517cc38b65","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Notification","item":[{"name":"Notification Get Asset Followers","id":"2dfaeb4b-d3f3-4486-83c0-28b2ad339e18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/notification/assets/:assetId/followers","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["notification","assets",":assetId","followers"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"397ca1ae-66c8-43e3-b6e5-9ee0a4fc50f2","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"09418aee-1184-4816-b285-92fffde73661","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/notification/assets/:assetId/followers","host":["https://api.mediavalet.com"],"path":["notification","assets",":assetId","followers"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"userId\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"isCurrentUser\": \"\"\n },\n {\n \"userId\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"isCurrentUser\": \"\"\n }\n]"},{"id":"a1e22619-8afd-4a0b-85c9-78f0a1b4438b","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/assets/:assetId/followers","host":["https://api.mediavalet.com"],"path":["notification","assets",":assetId","followers"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"02675532-8420-4e4e-9880-59886c8f3614","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/assets/:assetId/followers","host":["https://api.mediavalet.com"],"path":["notification","assets",":assetId","followers"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"35927763-11fe-4594-a0fb-43c793ce01d6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/assets/:assetId/followers","host":["https://api.mediavalet.com"],"path":["notification","assets",":assetId","followers"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2dfaeb4b-d3f3-4486-83c0-28b2ad339e18"},{"name":"Notification Get In App Notifications","id":"1df1b6dd-a9e3-4b3b-826e-1e6c5cbd079c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/notification/inApp?bypassCache=false","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["notification","inApp"],"host":["https://api.mediavalet.com"],"query":[{"key":"bypassCache","value":"false"}],"variable":[]}},"response":[{"id":"60c893fd-2f19-4e14-9a84-ea5ce00f1f9d","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/notification/inApp?bypassCache=false","host":["https://api.mediavalet.com"],"path":["notification","inApp"],"query":[{"key":"bypassCache","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"notificationId\": \"\",\n \"displayNotificationId\": \"\",\n \"sender\": {\n \"id\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"notificationCategory\": \"\",\n \"relativeUrl\": \"\",\n \"message\": \"\",\n \"markedAsRead\": \"\",\n \"timestamp\": \"\",\n \"entityIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"notificationId\": \"\",\n \"displayNotificationId\": \"\",\n \"sender\": {\n \"id\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"notificationCategory\": \"\",\n \"relativeUrl\": \"\",\n \"message\": \"\",\n \"markedAsRead\": \"\",\n \"timestamp\": \"\",\n \"entityIds\": [\n \"\",\n \"\"\n ]\n }\n]"},{"id":"1128756f-38d5-4064-b15c-0ad978c8636b","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/inApp?bypassCache=false","host":["https://api.mediavalet.com"],"path":["notification","inApp"],"query":[{"key":"bypassCache","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fcdde603-8c00-4885-a9a2-2735c0c1aecc","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/inApp?bypassCache=false","host":["https://api.mediavalet.com"],"path":["notification","inApp"],"query":[{"key":"bypassCache","value":"false"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fc2e0464-7208-4004-946f-7458831d7979","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/inApp?bypassCache=false","host":["https://api.mediavalet.com"],"path":["notification","inApp"],"query":[{"key":"bypassCache","value":"false"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1df1b6dd-a9e3-4b3b-826e-1e6c5cbd079c"},{"name":"Notification Mark All In App Notification As Read","id":"b89abc25-be69-41e4-b6f8-4a20b625cda3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/notification/markAllAsRead","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["notification","markAllAsRead"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"232e9dbf-59ca-4c43-9796-ede34166d67a","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/notification/markAllAsRead"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"262fa5e5-8b29-4859-8426-15616c5283f2","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/notification/markAllAsRead"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4a073008-9bf8-41a4-a9f8-ce23b3ffa3a4","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/notification/markAllAsRead"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"437fc9f5-04ee-4e28-805b-88dfe40aef02","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/notification/markAllAsRead"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b89abc25-be69-41e4-b6f8-4a20b625cda3"},{"name":"Notification Mark In App Notification As Read","id":"c405c897-607a-4e28-b19d-ed0ae5bd08c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/notification/markAsRead/:notificationId","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["notification","markAsRead",":notificationId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"51957212-e9b2-4e88-ae81-cb952c5b098a","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"notificationId"}]}},"response":[{"id":"574cc67f-a92e-40ce-ab47-6a4ebffabfaf","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/markAsRead/:notificationId","host":["https://api.mediavalet.com"],"path":["notification","markAsRead",":notificationId"],"variable":[{"key":"notificationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b412af4f-7897-422e-943f-8d0cd203cded","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/markAsRead/:notificationId","host":["https://api.mediavalet.com"],"path":["notification","markAsRead",":notificationId"],"variable":[{"key":"notificationId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1549bbfb-998a-4837-baca-f0d69b239865","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/markAsRead/:notificationId","host":["https://api.mediavalet.com"],"path":["notification","markAsRead",":notificationId"],"variable":[{"key":"notificationId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b5ca0a28-2938-4cc4-966e-f96a47f9b1a3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/markAsRead/:notificationId","host":["https://api.mediavalet.com"],"path":["notification","markAsRead",":notificationId"],"variable":[{"key":"notificationId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c405c897-607a-4e28-b19d-ed0ae5bd08c4"},{"name":"Notification Send Notification Async","id":"6ff6268f-b717-4b02-888f-55867ee604b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"SavedSearches\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["notification"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"5eb61f02-1250-4362-8db4-92e171f39fa3","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"SavedSearches\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"validEmails\": [\n \"\",\n \"\"\n ],\n \"invalidEmails\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ut9a1\": {},\n \"elit_18a\": {},\n \"est27\": {}\n },\n \"interpolations\": {\n \"velitb\": {},\n \"Lorem_e93\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsBrandedPortal\"\n ]\n}"},{"id":"862c07c1-eae4-4e15-9c29-09df727fda4f","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"SavedSearches\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a43220f4-2ec7-4e00-8698-c1b43a6897d4","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"SavedSearches\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5c068d0e-0846-4d4f-a1b7-f17e5d892d0b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"entityIds\": [\n \"\",\n \"\"\n ],\n \"notificationEntityType\": \"SavedSearches\",\n \"userGroups\": [\n \"\",\n \"\"\n ],\n \"users\": [\n \"\",\n \"\"\n ],\n \"userEmails\": [\n \"\",\n \"\"\n ],\n \"message\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6ff6268f-b717-4b02-888f-55867ee604b6"},{"name":"Notification Search Users And User Groups Post","id":"ffd94e83-5b48-4cf3-917a-11f167f96432","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Count\": \"\",\n \"Offset\": \"\",\n \"SearchTerm\": \"\",\n \"SelectedUsersAndUserGroups\": [\n \"\",\n \"\"\n ],\n \"SelectedAssets\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification/usersandusergroups","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["notification","usersandusergroups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"76a9463a-6c99-4c89-b586-c4a6bf5682cb","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Count\": \"\",\n \"Offset\": \"\",\n \"SearchTerm\": \"\",\n \"SelectedUsersAndUserGroups\": [\n \"\",\n \"\"\n ],\n \"SelectedAssets\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification/usersandusergroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"userId\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"userEmail\": \"\",\n \"userGroupId\": \"\",\n \"userGroupName\": \"\",\n \"cardinalityOfGroup\": \"\",\n \"roleId\": \"\",\n \"hasPermission\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"culpa280\": {},\n \"mollit90e\": {},\n \"laborum4_9\": {}\n },\n \"interpolations\": {\n \"Ut_98\": {},\n \"nostrud0\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"asset:shareAsCdnLink\"\n ]\n },\n {\n \"userId\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"userEmail\": \"\",\n \"userGroupId\": \"\",\n \"userGroupName\": \"\",\n \"cardinalityOfGroup\": \"\",\n \"roleId\": \"\",\n \"hasPermission\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"aute_e\": {}\n },\n \"interpolations\": {\n \"ut523\": {},\n \"proident0\": {}\n },\n \"permissions\": [\n \"asset:shareAsLink\",\n \"asset:shareAsLink\"\n ]\n }\n]"},{"id":"93ebc208-8063-4826-8e43-23d3366d0967","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Count\": \"\",\n \"Offset\": \"\",\n \"SearchTerm\": \"\",\n \"SelectedUsersAndUserGroups\": [\n \"\",\n \"\"\n ],\n \"SelectedAssets\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification/usersandusergroups"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f1c18be1-f308-44c0-8222-ecdbe0bfdafe","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Count\": \"\",\n \"Offset\": \"\",\n \"SearchTerm\": \"\",\n \"SelectedUsersAndUserGroups\": [\n \"\",\n \"\"\n ],\n \"SelectedAssets\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification/usersandusergroups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8e4d61c3-a4e1-4ce0-b84c-192128ad9eee","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Count\": \"\",\n \"Offset\": \"\",\n \"SearchTerm\": \"\",\n \"SelectedUsersAndUserGroups\": [\n \"\",\n \"\"\n ],\n \"SelectedAssets\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification/usersandusergroups"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ffd94e83-5b48-4cf3-917a-11f167f96432"},{"name":"Notification Follow Asset Async","id":"b2a18261-8746-4c26-8248-c5ded7bb3885","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"follow\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/notification/assets/:assetId/follow","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["notification","assets",":assetId","follow"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f513b704-1fd7-4440-90df-34a639eab491","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"14a502b9-27cd-4010-a7a2-cd00f7c03c6f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"follow\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/notification/assets/:assetId/follow","host":["https://api.mediavalet.com"],"path":["notification","assets",":assetId","follow"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"a8682f68-50b4-4c88-867e-53761ddaa3d6","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"follow\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/notification/assets/:assetId/follow","host":["https://api.mediavalet.com"],"path":["notification","assets",":assetId","follow"],"variable":[{"key":"assetId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"941ba42b-1b7e-49db-8f97-bfd978424307","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"follow\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/notification/assets/:assetId/follow","host":["https://api.mediavalet.com"],"path":["notification","assets",":assetId","follow"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"558b0c46-b9ce-42ac-9366-f73a7b5ad076","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"follow\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/notification/assets/:assetId/follow","host":["https://api.mediavalet.com"],"path":["notification","assets",":assetId","follow"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f3c93ec0-434f-41ec-9da4-3fa3a837b978","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"follow\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/notification/assets/:assetId/follow","host":["https://api.mediavalet.com"],"path":["notification","assets",":assetId","follow"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b2a18261-8746-4c26-8248-c5ded7bb3885"},{"name":"Create Video Intelligence Trial Request","id":"9fa31125-129d-4ae4-b366-40610d8d1dcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/notification/videointelligence/trial-request","description":"

Starts a video intelligence trial.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["notification","videointelligence","trial-request"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"2e5decdc-6e64-41e4-82fc-2cec6d2ddb0f","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/notification/videointelligence/trial-request"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"43dcd223-5abb-4664-b3d6-5112358f2673","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/notification/videointelligence/trial-request"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"219fbf59-aaaf-45f4-958a-af18da85618b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/notification/videointelligence/trial-request"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9fa31125-129d-4ae4-b366-40610d8d1dcb"},{"name":"Notification Validate User Email Address","id":"3a158834-7d24-4e9c-abbd-d6f859fc38e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/notification/users/validate?emailAddress=","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["notification","users","validate"],"host":["https://api.mediavalet.com"],"query":[{"description":{"content":"

(Required)

\n","type":"text/plain"},"key":"emailAddress","value":""}],"variable":[]}},"response":[{"id":"bd56b5d6-deb0-4ff9-b200-7d19ff02196c","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/notification/users/validate?emailAddress=","host":["https://api.mediavalet.com"],"path":["notification","users","validate"],"query":[{"key":"emailAddress","value":"","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"exists\": \"\"\n}"},{"id":"e49d6153-34fb-4684-b8b6-e681a0fda088","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/users/validate?emailAddress=","host":["https://api.mediavalet.com"],"path":["notification","users","validate"],"query":[{"key":"emailAddress","value":"","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7294d048-1c3a-4c90-b203-708cbc064a6d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/users/validate?emailAddress=","host":["https://api.mediavalet.com"],"path":["notification","users","validate"],"query":[{"key":"emailAddress","value":"","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"068dba6e-115d-4644-bf9d-451a02c764b4","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/notification/users/validate?emailAddress=","host":["https://api.mediavalet.com"],"path":["notification","users","validate"],"query":[{"key":"emailAddress","value":"","description":"(Required) "}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3a158834-7d24-4e9c-abbd-d6f859fc38e9"}],"id":"76ceed27-5d6c-4bfd-b66f-b30c455abc90","_postman_id":"76ceed27-5d6c-4bfd-b66f-b30c455abc90","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"OrgUnit","item":[{"name":"Retrieve Org Unit Information By Id","id":"a2ac70cc-1799-468e-8ac7-9dfda4ac3971","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/:id","description":"

Retrieves detailed information for a specific organizational unit.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits",":id"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"bdee6623-4a05-47e7-a482-17f9090134a5","description":{"content":"

(Required) The id of the organizational unit.

\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"4725f825-4e62-4d3a-a93c-28dc72b78a06","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"names\": {\n \"name\": \"\",\n \"canonicalName\": \"\"\n },\n \"contactInformation\": {\n \"street\": \"\",\n \"city\": \"\",\n \"stateProvince\": \"\",\n \"country\": \"\",\n \"postalCode\": \"\",\n \"region\": \"\",\n \"phoneNumber\": \"\",\n \"website\": \"\"\n },\n \"storage\": {\n \"quota\": \"\",\n \"usage\": \"\"\n },\n \"customization\": {\n \"headerImageAndLogos\": {\n \"logoImageMedium\": \"\",\n \"logoImageLarge\": \"\",\n \"headerImage\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequat_e\": {}\n },\n \"interpolations\": {\n \"dolor__d5\": {},\n \"amet_9_3\": {},\n \"exercitation_8f9\": {},\n \"eiusmod23_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:transferOwnership\"\n ]\n },\n \"doNotDisplayRequestUserLink\": \"\",\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nisi22\": {},\n \"adipisicing7e_\": {},\n \"est_9\": {},\n \"irure_6\": {}\n },\n \"interpolations\": {\n \"utd\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:downloadFromMvd\"\n ]\n },\n \"dafaultSkin\": \"\"\n },\n \"customRoot\": \"\",\n \"printUIClientId\": \"\",\n \"sendForApprovalNotice\": \"\",\n \"applyWatermark\": \"\",\n \"watermarkFilePath\": \"\",\n \"isAmsEnabled\": \"\",\n \"launchDarklyConfigs\": {\n \"clientSideId\": \"\"\n },\n \"features\": {\n \"culpa_e4f\": \"Active\",\n \"pariatur_435\": \"Experimental\"\n },\n \"featuresLastModified\": {\n \"occaecat2\": \"\"\n },\n \"activeDirectoryTenantId\": \"\",\n \"userIdleTimeOutInMinutes\": \"\",\n \"deactivateVersioning\": \"\",\n \"oktaOrgUrl\": \"\",\n \"iamExternalIdentityProviderName\": \"\",\n \"overwriteGroups\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"laboris_ed_\": {},\n \"amet_183\": {}\n },\n \"interpolations\": {\n \"ut6a6\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"user:editEmail\"\n ]\n}"},{"id":"6690f38a-2d51-4d6d-bbf0-9b4bc37dd627","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits",":id"],"variable":[{"key":"id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c58d5835-3705-47ca-a8e7-8bc85e87cc97","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits",":id"],"variable":[{"key":"id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2297cae8-f86a-48bc-a5ed-4dfb639bf41d","name":"An organizational unit was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits",":id"],"variable":[{"key":"id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"bd594a20-49e6-4b3d-9f4d-42801c1d7f9c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits",":id"],"variable":[{"key":"id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a2ac70cc-1799-468e-8ac7-9dfda4ac3971"},{"name":"Retrieve Current Org Unit Information","id":"dee758e7-a77b-476a-a02d-1a23fcac410e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current","description":"

Retrieves detailed information for current organizational unit.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits","current"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"2cf0b909-a454-41bc-9113-8204b097e0fa","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"names\": {\n \"name\": \"\",\n \"canonicalName\": \"\"\n },\n \"contactInformation\": {\n \"street\": \"\",\n \"city\": \"\",\n \"stateProvince\": \"\",\n \"country\": \"\",\n \"postalCode\": \"\",\n \"region\": \"\",\n \"phoneNumber\": \"\",\n \"website\": \"\"\n },\n \"storage\": {\n \"quota\": \"\",\n \"usage\": \"\"\n },\n \"customization\": {\n \"headerImageAndLogos\": {\n \"logoImageMedium\": \"\",\n \"logoImageLarge\": \"\",\n \"headerImage\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequat_e\": {}\n },\n \"interpolations\": {\n \"dolor__d5\": {},\n \"amet_9_3\": {},\n \"exercitation_8f9\": {},\n \"eiusmod23_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:transferOwnership\"\n ]\n },\n \"doNotDisplayRequestUserLink\": \"\",\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nisi22\": {},\n \"adipisicing7e_\": {},\n \"est_9\": {},\n \"irure_6\": {}\n },\n \"interpolations\": {\n \"utd\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:downloadFromMvd\"\n ]\n },\n \"dafaultSkin\": \"\"\n },\n \"customRoot\": \"\",\n \"printUIClientId\": \"\",\n \"sendForApprovalNotice\": \"\",\n \"applyWatermark\": \"\",\n \"watermarkFilePath\": \"\",\n \"isAmsEnabled\": \"\",\n \"launchDarklyConfigs\": {\n \"clientSideId\": \"\"\n },\n \"features\": {\n \"culpa_e4f\": \"Active\",\n \"pariatur_435\": \"Experimental\"\n },\n \"featuresLastModified\": {\n \"occaecat2\": \"\"\n },\n \"activeDirectoryTenantId\": \"\",\n \"userIdleTimeOutInMinutes\": \"\",\n \"deactivateVersioning\": \"\",\n \"oktaOrgUrl\": \"\",\n \"iamExternalIdentityProviderName\": \"\",\n \"overwriteGroups\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"laboris_ed_\": {},\n \"amet_183\": {}\n },\n \"interpolations\": {\n \"ut6a6\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"user:editEmail\"\n ]\n}"},{"id":"faa4a8ac-0674-4213-91a4-48876670f614","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"15babad0-3102-4c3f-9709-dba5ca8979dd","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ad682d27-bffc-444e-bc49-c3829dc3da12","name":"An organizational unit was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f2716ec6-d3f3-4b1f-b0c1-2901870d0f7d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dee758e7-a77b-476a-a02d-1a23fcac410e"},{"name":"Retrieves Portals Details For Current Org Unit","id":"5906102f-86a7-4b11-a369-559f56b8755f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current/portals","description":"

Retrieves information for portals of current organizational unit.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits","current","portals"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"c541c2ed-80c3-4faf-9122-42724aa09ddc","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current/portals"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"domainName\": \"\",\n \"hostName\": \"\",\n \"isDefault\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"euf\": {}\n },\n \"interpolations\": {\n \"in_72d\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"lightbox:viewAsset\"\n ]\n },\n {\n \"domainName\": \"\",\n \"hostName\": \"\",\n \"isDefault\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"cupidatat0c\": {},\n \"sit_6c8\": {}\n },\n \"interpolations\": {\n \"Duisb\": {},\n \"sed_0\": {},\n \"dolore_a\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"lightbox:editDetails\"\n ]\n }\n]"},{"id":"204d012b-ead7-47a4-a262-21f759814b28","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/portals"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"18a8098f-4106-42b9-891a-aa61935e6f06","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/portals"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8e9e5b3b-3fe6-4f14-93f1-770a836c1358","name":"An organizational unit was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/portals"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b9f35274-4ede-4c3e-86c7-1f05196d5b89","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/portals"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5906102f-86a7-4b11-a369-559f56b8755f"},{"name":"Retrieve Current Org Unit Libraries Information","id":"45ca9128-3dcd-4eaf-b347-90af7ed8d56d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current/libraries","description":"

Retrieves detailed information for current organizational unit libraries.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits","current","libraries"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"9b2a6625-def9-4923-8de8-4fcd93d7045e","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current/libraries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"customRootId\": \"\",\n \"customRootName\": \"\",\n \"storage\": {\n \"quota\": \"\",\n \"usage\": \"\"\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ut_83\": {},\n \"ea33_\": {}\n },\n \"interpolations\": {\n \"eiusmodaf9\": {},\n \"inb4\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:downloadFromMvd\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"customRootId\": \"\",\n \"customRootName\": \"\",\n \"storage\": {\n \"quota\": \"\",\n \"usage\": \"\"\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"laborumf\": {},\n \"dolor1e\": {}\n },\n \"interpolations\": {\n \"idd3\": {},\n \"aute01d\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsZippedFile\"\n ]\n }\n]"},{"id":"7b0e1dcd-da75-4033-858d-25bd1bb4d325","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/libraries"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e93bd2e5-fa5e-4a2e-8538-1d0270e61ba3","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/libraries"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1d9c5dc3-b2a5-4ac8-b29a-13a26930ddc8","name":"An organizational unit was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/libraries"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"39df71da-02c8-40cf-90eb-0cec45e99bb6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/libraries"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"45ca9128-3dcd-4eaf-b347-90af7ed8d56d"},{"name":"Retrieve Org Unit Information","id":"0c92d2c3-bfb5-484a-893b-8ec631478e2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/organizationalUnits/:hostName","description":"

Retrieves org unit information based on hostname.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","organizationalUnits",":hostName"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"02f8ab00-6e2a-4d1c-ada8-d8fd61264a70","description":{"content":"

(Required) Domain name of host.

\n","type":"text/plain"},"type":"any","value":"","key":"hostName"}]}},"response":[{"id":"81bdde4a-9733-492c-b861-f565e50ab59d","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/organizationalUnits/:hostName","host":["https://api.mediavalet.com"],"path":["public","organizationalUnits",":hostName"],"variable":[{"key":"hostName"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"names\": {\n \"name\": \"\",\n \"canonicalName\": \"\"\n },\n \"customization\": {\n \"headerImageAndLogos\": {\n \"logoImageMedium\": \"\",\n \"logoImageLarge\": \"\",\n \"headerImage\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor_667\": {}\n },\n \"interpolations\": {\n \"dolore1\": {},\n \"laboris_35e\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"lightbox:assignAsset\"\n ]\n },\n \"doNotDisplayRequestUserLink\": \"\",\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"veniam_e\": {},\n \"sit_b0a\": {}\n },\n \"interpolations\": {\n \"sunt_4\": {},\n \"cillum_7c0\": {},\n \"ad_8\": {},\n \"Duis91d\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"None\"\n ]\n },\n \"dafaultSkin\": \"\"\n },\n \"onlineGalleryPreviewPaneDefault\": \"\",\n \"termsAndConditions\": {\n \"displayTermsAndConditions\": \"\",\n \"termsAcceptanceRequiredForLogin\": \"\",\n \"termsAndConditionsNotice\": \"\",\n \"termsAndConditionsUpdated\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"commodoe96\": {}\n },\n \"interpolations\": {\n \"quis50_\": {},\n \"incididuntd\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:shareAsZippedFile\"\n ]\n },\n \"launchDarklyConfigs\": {\n \"clientSideId\": \"\"\n },\n \"features\": {\n \"irure_579\": \"Experimental\"\n },\n \"featuresLastModified\": {\n \"occaecat2f\": \"\",\n \"exercitation20\": \"\",\n \"in_13\": \"\"\n },\n \"activeDirectoryTenantId\": \"\",\n \"azureActiveDirectoryDomainName\": \"\",\n \"oktaOrgUrl\": \"\",\n \"UserIdleTimeOutInMinutes\": \"\",\n \"printUIClientID\": \"\",\n \"watermarkFilePath\": \"\",\n \"externalIdentityProviderName\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"Lorem92_\": {},\n \"etc\": {}\n },\n \"interpolations\": {\n \"et747\": {},\n \"eu_7\": {}\n },\n \"permissions\": [\n \"asset:shareAsCdnLink\",\n \"user:editEmail\"\n ]\n}"},{"id":"32281825-21cf-46f5-899c-2810dab8703a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/organizationalUnits/:hostName","host":["https://api.mediavalet.com"],"path":["public","organizationalUnits",":hostName"],"variable":[{"key":"hostName"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0c92d2c3-bfb5-484a-893b-8ec631478e2c"},{"name":"Retrieve Current Library's Skin Colors","id":"95561777-79da-4faa-a82a-3df671bf43f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current/skinColors","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits","current","skinColors"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"dec4c0bd-745e-4da6-981f-d3a6e6200de1","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in34\": {},\n \"et_a\": {},\n \"commodo17d\": {},\n \"ut_f\": {}\n },\n \"interpolations\": {\n \"ipsum__\": {},\n \"officia5\": {},\n \"sed_550\": {},\n \"adipisicing__d\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:downloadFromPortal\"\n ]\n}"},{"id":"72df813f-3317-4692-b7cd-d47919ce4d15","name":"The current user is not authorized to get the color.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0b4eca77-c207-4990-a263-a1c820cac331","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7cc49522-a184-4b86-9b9a-2290eb65a5fb","name":"An organizational unit was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a06b28cf-4cc8-4d38-ad9b-1ae332deee26","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"95561777-79da-4faa-a82a-3df671bf43f4"},{"name":"Update Current Library's Skin Colors","id":"55c96b79-908d-4f03-a088-b5e22a38688b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/organizationalunits/current/skinColors","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits","current","skinColors"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"45ef76a7-c15b-4ca0-bb5e-cf6befec2d27","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5d90326b-f192-4564-b560-84a854e7bc5f","name":"The current user is not authorized to update the color.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"97feda6a-702d-404f-a8e3-0b5b2ea996d0","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"86a3cd72-b7bc-4a4f-a276-499d90e16adf","name":"An organizational unit was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f2498cef-5de7-49a1-8f9f-ae3da75b8d4b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/organizationalunits/current/skinColors"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"55c96b79-908d-4f03-a088-b5e22a38688b"},{"name":"Retrieve Current Library's Skin Colors","id":"71cf928f-ed3a-4bb6-9135-e08df5480a0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits",":portal","skinColors"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"a241692b-e98e-488b-a4fa-a069b0249941","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"portal"}]}},"response":[{"id":"8bbfec0d-0088-4e03-a1a1-a0ab64a1b781","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in34\": {},\n \"et_a\": {},\n \"commodo17d\": {},\n \"ut_f\": {}\n },\n \"interpolations\": {\n \"ipsum__\": {},\n \"officia5\": {},\n \"sed_550\": {},\n \"adipisicing__d\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:downloadFromPortal\"\n ]\n}"},{"id":"fd04e4b1-b269-4ef3-b409-92d2ed97a571","name":"The current user is not authorized to get the color.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f55adcaf-6741-40e7-96e9-5ea658a5b537","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6bd4e032-13d0-4e73-8284-6f531a161977","name":"An organizational unit was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"68e043ea-6c29-4d86-9c34-7914a816d115","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"71cf928f-ed3a-4bb6-9135-e08df5480a0b"},{"name":"Update Current Library's Skin Colors","id":"42ea09aa-35b6-4342-ae93-684fe425a62d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits",":portal","skinColors"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"dadc5abd-22bf-4b5b-ab3a-49041ab0f0d1","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"portal"}]}},"response":[{"id":"5a0318b1-f9be-4003-8eca-e0bfdb0e5400","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"491ea5b2-7057-4837-84d7-2f97db03d0b4","name":"The current user is not authorized to update the color.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"98f54e48-ad74-4bd0-baef-d6442c8bc83e","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1af76fb1-ce00-4531-a343-cab0279ef924","name":"An organizational unit was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b85e1f51-4306-4be8-a949-908ea42816c7","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/skinColors","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","skinColors"],"variable":[{"key":"portal"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"42ea09aa-35b6-4342-ae93-684fe425a62d"},{"name":"Retrieve Org Unit Library By Id","id":"3a1c1f31-80b3-4a9e-bb72-8aff9d31b272","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current/libraries/:id","description":"

Retrieves an organizational unit library by Id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits","current","libraries",":id"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"404321b8-3998-4775-8cbc-d445f7835f41","description":{"content":"

(Required) The identifier of getting organizational unit library.

\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"41c6224e-ef95-41a0-8996-4089116a5e15","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"customRootId\": \"\",\n \"customRootName\": \"\",\n \"storage\": {\n \"quota\": \"\",\n \"usage\": \"\"\n },\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"elit5b0\": {},\n \"aute_06_\": {},\n \"Duiscb\": {}\n },\n \"interpolations\": {\n \"ut_ba\": {},\n \"nisi_f46\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:shareAsLink\"\n ]\n}"},{"id":"b1a1789f-a449-4cdf-807f-63f2f60d939c","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":id"],"variable":[{"key":"id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c57c21ce-dea8-4072-957f-7341131cfa4d","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":id"],"variable":[{"key":"id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a7f317f6-b6d9-43aa-b202-a2c1d7873770","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":id"],"variable":[{"key":"id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"41447be8-2e68-449a-9a08-5858e9d5b013","name":"An organizational unit was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":id"],"variable":[{"key":"id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"12f4804a-5592-476d-8fd4-2bf6933a5663","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:id","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":id"],"variable":[{"key":"id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3a1c1f31-80b3-4a9e-bb72-8aff9d31b272"},{"name":"Retrieve Print UI Credential For Current Org Unit","id":"0a18036d-5884-42e8-bc4b-c209c203be5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current/integrations/printui","description":"

Retrieves print ui auth token and client ID for current organizational unit.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits","current","integrations","printui"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"01598d89-9875-4ac4-b7da-c76ee672fa61","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/organizationalunits/current/integrations/printui"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"printUIClientId\": \"\",\n \"printUIAuthCode\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"doloreb0\": {},\n \"Excepteur7\": {},\n \"fugiat_d_8\": {}\n },\n \"interpolations\": {\n \"sed56\": {},\n \"veniam_efa\": {}\n },\n \"permissions\": [\n \"None\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"47e4222f-af04-4e1e-9717-b52b3a6480ad","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/integrations/printui"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a0bcf655-e796-4208-81a0-7f2defeb0b4f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/integrations/printui"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3dae4f7c-f7f6-44ca-a7c4-d9097a367aac","name":"An organizational unit was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/integrations/printui"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f714965e-36f4-43a8-8e95-831e7d5f2815","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/integrations/printui"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0a18036d-5884-42e8-bc4b-c209c203be5c"},{"name":"Update Current Library's Logo","id":"18b6704d-ba6e-498e-b293-24301b41fbf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/organizationalunits/current/logo","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits","current","logo"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"621db858-78a0-46ff-8e7a-91caa0c6fd88","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/logo"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a057f33d-904a-43fc-b082-8bd169a0c728","name":"The current user is not authorized to update the logo.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/logo"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"602366a1-190d-4141-8831-698d005db5f9","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/logo"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e78073a5-4c22-49bb-8c10-52c0cd86bf29","name":"An organizational unit was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/logo"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ea675e4e-46eb-4995-91a7-345290b87e23","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/organizationalunits/current/logo"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"18b6704d-ba6e-498e-b293-24301b41fbf6"},{"name":"Update Current Library's Logo","id":"12ae9aa7-ea0c-4d2e-87be-13fe27347536","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/organizationalunits/:portal/logo","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits",":portal","logo"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"2f1926d7-d810-4bf9-a8ae-5f22b18fe2d5","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"portal"}]}},"response":[{"id":"5f4dcf40-84b4-4893-8c59-e16a2ca5b5c8","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/logo","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","logo"],"variable":[{"key":"portal"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"58e41deb-aea8-40f4-b2f2-c18d049ecc8a","name":"The current user is not authorized to update the logo.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/logo","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","logo"],"variable":[{"key":"portal"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8d05fc40-5fe0-40f5-964a-add28af12965","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/logo","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","logo"],"variable":[{"key":"portal"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"842e062a-3dec-47ab-afb6-e8c048e29440","name":"An organizational unit was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/logo","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","logo"],"variable":[{"key":"portal"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e47dcf17-7d34-4ad8-ba47-19c77f58c082","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/organizationalunits/:portal/logo","host":["https://api.mediavalet.com"],"path":["organizationalunits",":portal","logo"],"variable":[{"key":"portal"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"12ae9aa7-ea0c-4d2e-87be-13fe27347536"},{"name":"Update Current Library Name","id":"340fffb5-954d-4aaf-b454-51a2ca4bcb94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/organizationalUnits/:libraryId","description":"

Updates the current library name.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalUnits",":libraryId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"4c50136c-a56f-45b1-a078-611e377ce92d","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"","key":"libraryId"}]}},"response":[{"id":"ecaab85c-6a63-4dbf-8508-7908d45ac944","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalUnits/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalUnits",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"names\": {\n \"name\": \"\",\n \"canonicalName\": \"\"\n },\n \"contactInformation\": {\n \"street\": \"\",\n \"city\": \"\",\n \"stateProvince\": \"\",\n \"country\": \"\",\n \"postalCode\": \"\",\n \"region\": \"\",\n \"phoneNumber\": \"\",\n \"website\": \"\"\n },\n \"storage\": {\n \"quota\": \"\",\n \"usage\": \"\"\n },\n \"customization\": {\n \"headerImageAndLogos\": {\n \"logoImageMedium\": \"\",\n \"logoImageLarge\": \"\",\n \"headerImage\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequat_e\": {}\n },\n \"interpolations\": {\n \"dolor__d5\": {},\n \"amet_9_3\": {},\n \"exercitation_8f9\": {},\n \"eiusmod23_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:transferOwnership\"\n ]\n },\n \"doNotDisplayRequestUserLink\": \"\",\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nisi22\": {},\n \"adipisicing7e_\": {},\n \"est_9\": {},\n \"irure_6\": {}\n },\n \"interpolations\": {\n \"utd\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:downloadFromMvd\"\n ]\n },\n \"dafaultSkin\": \"\"\n },\n \"customRoot\": \"\",\n \"printUIClientId\": \"\",\n \"sendForApprovalNotice\": \"\",\n \"applyWatermark\": \"\",\n \"watermarkFilePath\": \"\",\n \"isAmsEnabled\": \"\",\n \"launchDarklyConfigs\": {\n \"clientSideId\": \"\"\n },\n \"features\": {\n \"culpa_e4f\": \"Active\",\n \"pariatur_435\": \"Experimental\"\n },\n \"featuresLastModified\": {\n \"occaecat2\": \"\"\n },\n \"activeDirectoryTenantId\": \"\",\n \"userIdleTimeOutInMinutes\": \"\",\n \"deactivateVersioning\": \"\",\n \"oktaOrgUrl\": \"\",\n \"iamExternalIdentityProviderName\": \"\",\n \"overwriteGroups\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"laboris_ed_\": {},\n \"amet_183\": {}\n },\n \"interpolations\": {\n \"ut6a6\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"user:editEmail\"\n ]\n}"},{"id":"3acceca8-dad6-439c-ae07-5a1fb687194c","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalUnits/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalUnits",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"37138f24-5253-4591-953e-29803ace65be","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalUnits/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalUnits",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ed67044a-b982-4e8a-887f-bbe46acf3750","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalUnits/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalUnits",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d95c0f2f-9ab6-4bfb-91b0-14e4830b6614","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalUnits/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalUnits",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"340fffb5-954d-4aaf-b454-51a2ca4bcb94"},{"name":"Update Current Library's Root Category Name","id":"65a6d239-524a-4d12-a6c6-a7756d906657","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/organizationalunits/current/libraries/:libraryId","description":"

Updates the library's root category name.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["organizationalunits","current","libraries",":libraryId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"d5ae49cc-5889-406a-942e-753bd239c59b","description":{"content":"

(Required) The library id.

\n","type":"text/plain"},"type":"any","value":"","key":"libraryId"}]}},"response":[{"id":"d091add9-3016-48be-a60e-c0477c5aaabd","name":"Request was accepted.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"names\": {\n \"name\": \"\",\n \"canonicalName\": \"\"\n },\n \"contactInformation\": {\n \"street\": \"\",\n \"city\": \"\",\n \"stateProvince\": \"\",\n \"country\": \"\",\n \"postalCode\": \"\",\n \"region\": \"\",\n \"phoneNumber\": \"\",\n \"website\": \"\"\n },\n \"storage\": {\n \"quota\": \"\",\n \"usage\": \"\"\n },\n \"customization\": {\n \"headerImageAndLogos\": {\n \"logoImageMedium\": \"\",\n \"logoImageLarge\": \"\",\n \"headerImage\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consequat_e\": {}\n },\n \"interpolations\": {\n \"dolor__d5\": {},\n \"amet_9_3\": {},\n \"exercitation_8f9\": {},\n \"eiusmod23_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:transferOwnership\"\n ]\n },\n \"doNotDisplayRequestUserLink\": \"\",\n \"skinColors\": {\n \"backgroundAssetCardColor\": \"\",\n \"backgroundAssetCardHeaderColor\": \"\",\n \"backgroundHeaderColor\": \"\",\n \"backgroundMainColor\": \"\",\n \"backgroundPageColor\": \"\",\n \"backgroundReviewActionsColor\": \"\",\n \"buttonColor\": \"\",\n \"buttonInactiveColor\": \"\",\n \"highlightColor\": \"\",\n \"lineColor\": \"\",\n \"overlayColor\": \"\",\n \"tableOddRowColor\": \"\",\n \"textColor\": \"\",\n \"textHighlightColor\": \"\",\n \"textInactiveColor\": \"\",\n \"treeFolderColor\": \"\",\n \"textTreeColor\": \"\",\n \"backgroundTableHeaderColor\": \"\",\n \"backgroundModalHeaderColor\": \"\",\n \"focusOutlineColor\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nisi22\": {},\n \"adipisicing7e_\": {},\n \"est_9\": {},\n \"irure_6\": {}\n },\n \"interpolations\": {\n \"utd\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:downloadFromMvd\"\n ]\n },\n \"dafaultSkin\": \"\"\n },\n \"customRoot\": \"\",\n \"printUIClientId\": \"\",\n \"sendForApprovalNotice\": \"\",\n \"applyWatermark\": \"\",\n \"watermarkFilePath\": \"\",\n \"isAmsEnabled\": \"\",\n \"launchDarklyConfigs\": {\n \"clientSideId\": \"\"\n },\n \"features\": {\n \"culpa_e4f\": \"Active\",\n \"pariatur_435\": \"Experimental\"\n },\n \"featuresLastModified\": {\n \"occaecat2\": \"\"\n },\n \"activeDirectoryTenantId\": \"\",\n \"userIdleTimeOutInMinutes\": \"\",\n \"deactivateVersioning\": \"\",\n \"oktaOrgUrl\": \"\",\n \"iamExternalIdentityProviderName\": \"\",\n \"overwriteGroups\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"laboris_ed_\": {},\n \"amet_183\": {}\n },\n \"interpolations\": {\n \"ut6a6\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"user:editEmail\"\n ]\n}"},{"id":"283f2829-93c9-4577-ba7d-9f230407d1ef","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d306a70d-441c-467c-9d8c-33729f0ffce8","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"894e8eda-dbd6-4155-9b36-b6f33343e09f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"36c08709-d267-4f62-a452-14a595ff1e83","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/organizationalunits/current/libraries/:libraryId","host":["https://api.mediavalet.com"],"path":["organizationalunits","current","libraries",":libraryId"],"variable":[{"key":"libraryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"65a6d239-524a-4d12-a6c6-a7756d906657"}],"id":"c5a1e4f1-b1c4-4369-984e-f236eb8bdc52","_postman_id":"c5a1e4f1-b1c4-4369-984e-f236eb8bdc52","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Persons","item":[{"name":"Persons Get Persons In Category Async","id":"ef41bffd-c323-42a2-80e4-64d04a3a6918","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/categories/:categoryId/persons","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryId","persons"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"41f378be-c276-4b12-b470-e2f3bd5f12e5","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"c134fae7-5877-443a-842b-be0bdc1ca48d","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons"],"variable":[{"key":"categoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"personCount\": \"\",\n \"persons\": [\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n },\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n }\n ]\n}"},{"id":"a5b15919-e49a-417a-9192-8fce3928e3b8","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons"],"variable":[{"key":"categoryId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"da496e82-cb58-42ee-b41e-59e164c583da","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2f4be42a-c47a-4a1a-a108-61df644873b1","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ef41bffd-c323-42a2-80e4-64d04a3a6918"},{"name":"Retrieve Faces in Most viewed Assets","id":"1a6b1fd9-ef28-44b1-8ab6-d8d90721fc39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/persons/:identificationType/mostViewed","description":"

Returns list faces of most viewed assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["persons",":identificationType","mostViewed"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"84e33eb3-7c53-4ace-88b1-a03976f9f9c8","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"identificationType"}]}},"response":[{"id":"67079052-05a4-48b6-9510-1cd189448699","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/persons/:identificationType/mostViewed","host":["https://api.mediavalet.com"],"path":["persons",":identificationType","mostViewed"],"variable":[{"key":"identificationType"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"name\": \"\",\n \"identified\": \"\",\n \"libaryId\": \"\"\n}"},{"id":"1d0f1a2a-1748-4cba-bdd8-5e4ea2f8a0d2","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/persons/:identificationType/mostViewed","host":["https://api.mediavalet.com"],"path":["persons",":identificationType","mostViewed"],"variable":[{"key":"identificationType"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1a6b1fd9-ef28-44b1-8ab6-d8d90721fc39"},{"name":"Persons Get Identified Persons In Category Async","id":"6dbecb34-5166-491b-b114-ad64ee833e09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/categories/:categoryId/persons/identified","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryId","persons","identified"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"2e651063-5a5b-4887-aad7-686a8ce547a7","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"3c504b2e-413b-4e46-8bdd-804b783d5457","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons/identified","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons","identified"],"variable":[{"key":"categoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"personCount\": \"\",\n \"persons\": [\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n },\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n }\n ]\n}"},{"id":"70ca51c0-7e21-4ea4-a9ed-5351308cadc2","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons/identified","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons","identified"],"variable":[{"key":"categoryId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"910470d4-93d2-4bb3-83b7-226be786a3bd","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons/identified","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons","identified"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eb72d8e4-15aa-4b7f-9be8-5d820431ffbf","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons/identified","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons","identified"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6dbecb34-5166-491b-b114-ad64ee833e09"},{"name":"Persons Get Unidentified Persons In Category Async","id":"3f002379-f2f8-41c0-a57f-c6e156c3204c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/categories/:categoryId/persons/unidentified","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["categories",":categoryId","persons","unidentified"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"6d7b0e3a-76a1-42ec-a1cb-2f66cae8ca97","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"categoryId"}]}},"response":[{"id":"e436b9d9-1f10-45e3-ac7a-131f04627487","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons/unidentified","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons","unidentified"],"variable":[{"key":"categoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"personCount\": \"\",\n \"persons\": [\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n },\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n }\n ]\n}"},{"id":"08621ed7-a68e-484e-8634-8206d20910b7","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons/unidentified","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons","unidentified"],"variable":[{"key":"categoryId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"043613cd-2ee6-4885-a5d3-9b6740df10ea","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons/unidentified","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons","unidentified"],"variable":[{"key":"categoryId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a20a8bb8-2219-49ae-91fc-a803cb954a5c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/categories/:categoryId/persons/unidentified","host":["https://api.mediavalet.com"],"path":["categories",":categoryId","persons","unidentified"],"variable":[{"key":"categoryId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3f002379-f2f8-41c0-a57f-c6e156c3204c"},{"name":"Retrieve Faces of recently Uploaded Assets","id":"33dcbf04-5d8f-474a-bb50-e73cd3bac5cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/persons/:identificationType/recentlyUploaded","description":"

Returns list of faces recently uploaded assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["persons",":identificationType","recentlyUploaded"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"47e51ed7-7fae-4f4b-ada3-f2f546689f04","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"identificationType"}]}},"response":[{"id":"e3639f93-acca-4ff8-aa83-0dcdf44b0bdc","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/persons/:identificationType/recentlyUploaded","host":["https://api.mediavalet.com"],"path":["persons",":identificationType","recentlyUploaded"],"variable":[{"key":"identificationType"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"name\": \"\",\n \"identified\": \"\",\n \"libaryId\": \"\"\n}"},{"id":"a801e3d0-bcff-4d92-93e5-edc5f5cfb4d2","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/persons/:identificationType/recentlyUploaded","host":["https://api.mediavalet.com"],"path":["persons",":identificationType","recentlyUploaded"],"variable":[{"key":"identificationType"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"33dcbf04-5d8f-474a-bb50-e73cd3bac5cf"},{"name":"Persons Get Identified Persons","id":"1df65388-b4c4-4754-a74c-0ca7cedb8731","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/identified/search","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["persons","identified","search"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"eb087df4-b6e5-4a1f-ab8a-ff5c0a04b7e1","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/identified/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"personCount\": \"\",\n \"persons\": [\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n },\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n }\n ]\n}"},{"id":"371e31f1-5a19-48ca-8a16-0384a66f39b9","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/identified/search"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"87356033-c79a-4a78-9396-3c3188cc6cd6","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/identified/search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"97cec7f7-5618-4eeb-a4a8-338946ab71af","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/identified/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1df65388-b4c4-4754-a74c-0ca7cedb8731"},{"name":"Persons Get Unidentified Persons","id":"449c183f-88b3-467f-a559-32cbacff78cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/unidentified/search","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["persons","unidentified","search"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"2d85ab4c-f3ed-497b-b154-f6fc758c9efa","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/unidentified/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"personCount\": \"\",\n \"persons\": [\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n },\n {\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"numberOfAssets\": \"\",\n \"name\": \"\",\n \"identified\": \"\"\n }\n ]\n}"},{"id":"f835e1e4-83fc-49ae-88d3-3ba03a44cabf","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/unidentified/search"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d7781c1e-462f-4225-b1b1-b30b5eb98341","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/unidentified/search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fd624cdd-cb9d-4843-bf63-3bf4a26df28b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"Filters\": \"\",\n \"Debug\": \"\",\n \"ThresholdStrategy\": \"\",\n \"Count\": \"\",\n \"Offset\": \"\",\n \"OrderBy\": \"\",\n \"ContainerFilter\": \"\",\n \"SearchTerm\": \"\",\n \"SearchFields\": \"\",\n \"IncludeTotalCount\": \"\",\n \"IncludeSoftDeleted\": \"\",\n \"UseSemanticSearch\": \"\",\n \"UseRrf\": \"\",\n \"SemanticSearchSimilarity\": \"\",\n \"FileId\": \"\",\n \"FileUrl\": \"\",\n \"FileSearchExactMatch\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/unidentified/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"449c183f-88b3-467f-a559-32cbacff78cc"},{"name":"Update person name","id":"c4bb52ca-d0cd-49e6-8334-cec6d4ece7f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/persons/:personId","description":"

Update person name.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["persons",":personId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"47ebc41f-4000-4c7d-9541-417fc3241a02","description":{"content":"

(Required) The person id guid.

\n","type":"text/plain"},"type":"any","value":"","key":"personId"}]}},"response":[{"id":"781d4d59-17d0-4973-8c17-17044be3b990","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/persons/:personId","host":["https://api.mediavalet.com"],"path":["persons",":personId"],"variable":[{"key":"personId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"thumbnailUrl\": \"\",\n \"name\": \"\",\n \"identified\": \"\",\n \"libaryId\": \"\"\n}"},{"id":"269cc449-93fd-4fb6-833c-a20767e8355c","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/persons/:personId","host":["https://api.mediavalet.com"],"path":["persons",":personId"],"variable":[{"key":"personId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c529fe3a-2a48-4187-b2b4-8ca98d980872","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/persons/:personId","host":["https://api.mediavalet.com"],"path":["persons",":personId"],"variable":[{"key":"personId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eac54c7c-4552-434a-9f18-6268b77b9361","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/persons/:personId","host":["https://api.mediavalet.com"],"path":["persons",":personId"],"variable":[{"key":"personId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c4bb52ca-d0cd-49e6-8334-cec6d4ece7f3"}],"id":"fac7e0aa-9955-4bee-b73b-fc0a0285f2a2","_postman_id":"fac7e0aa-9955-4bee-b73b-fc0a0285f2a2","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Reports","item":[{"name":"Retrieve Report Types","id":"dd568861-e108-464c-a5e1-220f9a00c750","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports","description":"

Returns a collection of report types.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["reports"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"7c9c914d-d4ce-4799-8459-93b484594cc4","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"sumBy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"inb7\": {}\n },\n \"interpolations\": {\n \"eu_e5f\": {},\n \"velitd0\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"user:editEmail\"\n ]\n },\n {\n \"id\": \"\",\n \"sumBy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"velit5e\": {}\n },\n \"interpolations\": {\n \"consequat_85\": {},\n \"adipisicingc\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"lightbox:transferOwnership\"\n ]\n }\n]"},{"id":"a36364f4-23f1-490a-a77e-1e8b88d3a6c6","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/reports"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fafdf157-b2df-4d60-811c-d781102f46ce","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/reports"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dd568861-e108-464c-a5e1-220f9a00c750"},{"name":"Retrieve Report","id":"eb2421b3-75a1-44c3-9cb4-1482ce28b652","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/report/:reportType","description":"

Returns a report.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["report",":reportType"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"4515c352-43aa-407b-afca-37c041371e03","description":{"content":"

(Required) The report type name.

\n","type":"text/plain"},"type":"any","value":"","key":"reportType"}]}},"response":[{"id":"54031acb-1347-49d7-8bb9-46f52d01d7c5","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/report/:reportType","host":["https://api.mediavalet.com"],"path":["report",":reportType"],"variable":[{"key":"reportType"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor0\": {}\n },\n \"interpolations\": {\n \"sit3\": {},\n \"velitf\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"e20ef703-6ca0-4250-93ac-6cd2cc653984","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/report/:reportType","host":["https://api.mediavalet.com"],"path":["report",":reportType"],"variable":[{"key":"reportType"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d7fb632e-0eb6-40ea-b9a0-726891a85ed7","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/report/:reportType","host":["https://api.mediavalet.com"],"path":["report",":reportType"],"variable":[{"key":"reportType"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eb2421b3-75a1-44c3-9cb4-1482ce28b652"},{"name":"Retrieve Reports","id":"c2caa25b-71f9-4c73-b06b-79f240714f8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports/:reportType","description":"

Returns reports by report type.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["reports",":reportType"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"67e40d13-78bd-458b-959e-2a6f4052c026","description":{"content":"

(Required) The report type name.

\n","type":"text/plain"},"type":"any","value":"","key":"reportType"}]}},"response":[{"id":"23e88596-4e8f-4764-b0ed-e1a9eaa91860","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType","host":["https://api.mediavalet.com"],"path":["reports",":reportType"],"variable":[{"key":"reportType"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor0\": {}\n },\n \"interpolations\": {\n \"sit3\": {},\n \"velitf\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"132d8352-a1bb-4caa-a264-364dd337c2ca","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType","host":["https://api.mediavalet.com"],"path":["reports",":reportType"],"variable":[{"key":"reportType"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f1263963-a1fb-4350-bba9-8042bdd49746","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType","host":["https://api.mediavalet.com"],"path":["reports",":reportType"],"variable":[{"key":"reportType"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c2caa25b-71f9-4c73-b06b-79f240714f8c"},{"name":"Retrieve Users Report","id":"80c5d281-a6ce-476f-bf74-7615ffa1e1ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports/:reportType/users","description":"

Returns a report on users.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["reports",":reportType","users"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"9f2655de-1f40-461f-bfe3-f6f61b5cf20d","description":{"content":"

(Required) The report type name.

\n","type":"text/plain"},"type":"any","value":"","key":"reportType"}]}},"response":[{"id":"a3cdec77-8c64-44fe-a384-14acc31d7dc2","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/users","host":["https://api.mediavalet.com"],"path":["reports",":reportType","users"],"variable":[{"key":"reportType"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"est3\": {}\n },\n \"interpolations\": {\n \"nisi6\": {},\n \"qui_7c7\": {},\n \"fugiat_98\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"lightbox:viewAsset\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Audio\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ipsumc\": {},\n \"voluptate515\": {},\n \"aliqua803\": {},\n \"in1_\": {}\n },\n \"interpolations\": {\n \"ind\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsCdnLink\"\n ]\n }\n]"},{"id":"4c69095b-4a8d-449f-bc42-fd5e8bf4fa93","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/users","host":["https://api.mediavalet.com"],"path":["reports",":reportType","users"],"variable":[{"key":"reportType"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f2ff90bb-ecd1-4fc6-9059-b839f135ce33","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/users","host":["https://api.mediavalet.com"],"path":["reports",":reportType","users"],"variable":[{"key":"reportType"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"80c5d281-a6ce-476f-bf74-7615ffa1e1ec"},{"name":"Retrieve Groups Report","id":"7f4e06a3-d689-4739-8620-842f341e9d3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports/:reportType/groups","description":"

Returns report groups by report type.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["reports",":reportType","groups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f9052b94-9594-4658-949c-be54ad471e42","description":{"content":"

(Required) The report type name.

\n","type":"text/plain"},"type":"any","value":"","key":"reportType"}]}},"response":[{"id":"64b56d1d-53d0-4a76-9548-9c6a0c6e186d","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups"],"variable":[{"key":"reportType"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"est3\": {}\n },\n \"interpolations\": {\n \"nisi6\": {},\n \"qui_7c7\": {},\n \"fugiat_98\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"lightbox:viewAsset\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Audio\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ipsumc\": {},\n \"voluptate515\": {},\n \"aliqua803\": {},\n \"in1_\": {}\n },\n \"interpolations\": {\n \"ind\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsCdnLink\"\n ]\n }\n]"},{"id":"93889cc5-2078-4d8f-964d-8f1cace10837","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups"],"variable":[{"key":"reportType"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fec5783d-3510-48e2-9aac-d4e4ea1a8c9d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups"],"variable":[{"key":"reportType"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7f4e06a3-d689-4739-8620-842f341e9d3a"},{"name":"Retrieve Users Assets Report","id":"4ebe45da-dcd5-4549-825f-5de0872a2e5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports/:reportType/users/:userId/assets","description":"

Returns a report of user assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["reports",":reportType","users",":userId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"4fab1554-d313-4b35-8498-a78aad69bad2","description":{"content":"

(Required) The report type name.

\n","type":"text/plain"},"type":"any","value":"","key":"reportType"},{"id":"4c0b7aae-ffa5-4d7a-9df3-6686bbdd68b2","description":{"content":"

(Required) The user id.

\n","type":"text/plain"},"type":"any","value":"","key":"userId"}]}},"response":[{"id":"ce2bf55f-a8de-4db1-8cad-911b06f5d054","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/users/:userId/assets","host":["https://api.mediavalet.com"],"path":["reports",":reportType","users",":userId","assets"],"variable":[{"key":"reportType"},{"key":"userId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"est3\": {}\n },\n \"interpolations\": {\n \"nisi6\": {},\n \"qui_7c7\": {},\n \"fugiat_98\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"lightbox:viewAsset\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Audio\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ipsumc\": {},\n \"voluptate515\": {},\n \"aliqua803\": {},\n \"in1_\": {}\n },\n \"interpolations\": {\n \"ind\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsCdnLink\"\n ]\n }\n]"},{"id":"64e596b7-24ca-4b03-b6fe-814ccd940b76","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/users/:userId/assets","host":["https://api.mediavalet.com"],"path":["reports",":reportType","users",":userId","assets"],"variable":[{"key":"reportType"},{"key":"userId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"51654166-3897-4246-a207-d1d1d8973f2f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/users/:userId/assets","host":["https://api.mediavalet.com"],"path":["reports",":reportType","users",":userId","assets"],"variable":[{"key":"reportType"},{"key":"userId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4ebe45da-dcd5-4549-825f-5de0872a2e5d"},{"name":"Retrieve User Groups Report","id":"0baa3e99-de65-42bf-8f12-65f2294cfaaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users","description":"

Returns a report on user groups.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["reports",":reportType","groups",":groupId","users"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"626b5cb7-5fde-4230-9ace-af2d8c44c04f","description":{"content":"

(Required) The report type name.

\n","type":"text/plain"},"type":"any","value":"","key":"reportType"},{"id":"990e6399-0644-4ccc-a780-84a34f155e22","description":{"content":"

(Required) The group id.

\n","type":"text/plain"},"type":"any","value":"","key":"groupId"}]}},"response":[{"id":"0b54bf7b-824d-4375-bdc6-de4d60223ca4","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups",":groupId","users"],"variable":[{"key":"reportType"},{"key":"groupId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"est3\": {}\n },\n \"interpolations\": {\n \"nisi6\": {},\n \"qui_7c7\": {},\n \"fugiat_98\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"lightbox:viewAsset\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Audio\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ipsumc\": {},\n \"voluptate515\": {},\n \"aliqua803\": {},\n \"in1_\": {}\n },\n \"interpolations\": {\n \"ind\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsCdnLink\"\n ]\n }\n]"},{"id":"fecd9e76-8fa6-4e8b-8912-a7c38e4ba12c","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups",":groupId","users"],"variable":[{"key":"reportType"},{"key":"groupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c9454dfb-1ac9-4ed3-b88b-be5b061c6a0f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups",":groupId","users"],"variable":[{"key":"reportType"},{"key":"groupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0baa3e99-de65-42bf-8f12-65f2294cfaaa"},{"name":"Retrieve User Group Assets Report","id":"e7fd475a-15f2-4d1c-8231-2e301c92b349","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users/:userId/assets","description":"

Returns a report of user groups assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["reports",":reportType","groups",":groupId","users",":userId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"9cd4c58c-fa9c-48f2-8896-64f28d57f0a8","description":{"content":"

(Required) The report type name.

\n","type":"text/plain"},"type":"any","value":"","key":"reportType"},{"id":"3c0149df-d77c-48a0-8372-04e06ff8fcf0","description":{"content":"

(Required) The group id.

\n","type":"text/plain"},"type":"any","value":"","key":"groupId"},{"id":"9889cf21-8210-40f9-9a48-09093d41688b","description":{"content":"

(Required) The user id.

\n","type":"text/plain"},"type":"any","value":"","key":"userId"}]}},"response":[{"id":"10df7217-5151-4caf-86eb-5e43ef5c06e2","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users/:userId/assets","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups",":groupId","users",":userId","assets"],"variable":[{"key":"reportType"},{"key":"groupId"},{"key":"userId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"est3\": {}\n },\n \"interpolations\": {\n \"nisi6\": {},\n \"qui_7c7\": {},\n \"fugiat_98\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"lightbox:viewAsset\"\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Audio\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ipsumc\": {},\n \"voluptate515\": {},\n \"aliqua803\": {},\n \"in1_\": {}\n },\n \"interpolations\": {\n \"ind\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsCdnLink\"\n ]\n }\n]"},{"id":"73ae6d16-ec74-43ce-951c-33a247a7f2f8","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users/:userId/assets","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups",":groupId","users",":userId","assets"],"variable":[{"key":"reportType"},{"key":"groupId"},{"key":"userId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"951de947-3494-4530-a7e5-d6a97fd95fc6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users/:userId/assets","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups",":groupId","users",":userId","assets"],"variable":[{"key":"reportType"},{"key":"groupId"},{"key":"userId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e7fd475a-15f2-4d1c-8231-2e301c92b349"},{"name":"Retrieve User Asset Events Report","id":"8a1e5dd8-a3e6-4282-9704-8822f9e6ea13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports/:reportType/users/:userId/assets/:assetId/events","description":"

Returns a report of user assets events.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["reports",":reportType","users",":userId","assets",":assetId","events"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"6011deb4-522d-4762-b429-674923332540","description":{"content":"

(Required) The report type name.

\n","type":"text/plain"},"type":"any","value":"","key":"reportType"},{"id":"bd200826-9a2f-4d1c-8b38-5f6b07474c5d","description":{"content":"

(Required) The user id.

\n","type":"text/plain"},"type":"any","value":"","key":"userId"},{"id":"c2bdd96a-9115-4bb8-9327-89fcbe6fdefd","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"d3539d5e-6a32-45fd-be0d-c71684c3acb3","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/users/:userId/assets/:assetId/events","host":["https://api.mediavalet.com"],"path":["reports",":reportType","users",":userId","assets",":assetId","events"],"variable":[{"key":"reportType"},{"key":"userId"},{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor0\": {}\n },\n \"interpolations\": {\n \"sit3\": {},\n \"velitf\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"3bf7c32e-2dc8-4f72-a9a8-fcccbe11cd26","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/users/:userId/assets/:assetId/events","host":["https://api.mediavalet.com"],"path":["reports",":reportType","users",":userId","assets",":assetId","events"],"variable":[{"key":"reportType"},{"key":"userId"},{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cc814474-1131-44f1-936f-7ef7f06a069c","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/users/:userId/assets/:assetId/events","host":["https://api.mediavalet.com"],"path":["reports",":reportType","users",":userId","assets",":assetId","events"],"variable":[{"key":"reportType"},{"key":"userId"},{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8a1e5dd8-a3e6-4282-9704-8822f9e6ea13"},{"name":"Retrieve User Group Assets Events Report","id":"0d56f97a-23bf-459c-87fd-b81904026dbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users/:userId/assets/:assetId/events","description":"

Returns a report of user groups assets events.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["reports",":reportType","groups",":groupId","users",":userId","assets",":assetId","events"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"ab3f771e-5cb1-4696-8784-9c48615cb83e","description":{"content":"

(Required) The report type name.

\n","type":"text/plain"},"type":"any","value":"","key":"reportType"},{"id":"3f45f5d4-2f90-45cb-9c0f-4c17f546e997","description":{"content":"

(Required) The group id.

\n","type":"text/plain"},"type":"any","value":"","key":"groupId"},{"id":"91c6bb3a-910e-464a-9998-069031834817","description":{"content":"

(Required) The user id.

\n","type":"text/plain"},"type":"any","value":"","key":"userId"},{"id":"15fb9b91-9f99-4aef-a353-fa9fab9689f8","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"148d5ed2-9dfa-41e4-87a6-f3bbc27765d4","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users/:userId/assets/:assetId/events","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups",":groupId","users",":userId","assets",":assetId","events"],"variable":[{"key":"reportType"},{"key":"groupId"},{"key":"userId"},{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor0\": {}\n },\n \"interpolations\": {\n \"sit3\": {},\n \"velitf\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"f0576e23-f896-4399-9dae-0a13e8d19bed","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users/:userId/assets/:assetId/events","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups",":groupId","users",":userId","assets",":assetId","events"],"variable":[{"key":"reportType"},{"key":"groupId"},{"key":"userId"},{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c629178a-219f-4544-ae1e-99d039ac19f1","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/reports/:reportType/groups/:groupId/users/:userId/assets/:assetId/events","host":["https://api.mediavalet.com"],"path":["reports",":reportType","groups",":groupId","users",":userId","assets",":assetId","events"],"variable":[{"key":"reportType"},{"key":"groupId"},{"key":"userId"},{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0d56f97a-23bf-459c-87fd-b81904026dbc"}],"id":"6cf29ef1-0bed-49bd-90a9-18a436ab133a","_postman_id":"6cf29ef1-0bed-49bd-90a9-18a436ab133a","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"ReportsV2","item":[{"name":"Retrieve a list of all available reports","id":"78918fea-df7d-4b61-9848-cf8f1a2fb36e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/v2/reports","description":"

Returns a list of available reports.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["v2","reports"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"218c2415-cd8b-4b1a-9232-ada6d0ef7ada","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/v2/reports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor0\": {}\n },\n \"interpolations\": {\n \"sit3\": {},\n \"velitf\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"b6e6fd9c-8004-45e0-82b6-dd43244a7b83","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/v2/reports"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e8c3756a-cb76-4ee0-a1cf-ad5b9e0def27","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/v2/reports"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"78918fea-df7d-4b61-9848-cf8f1a2fb36e"},{"name":"Retrieve an embed token for the specified report.","id":"0602c933-7a37-48b5-8e48-1d03f713bdc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/v2/reports/:reportId/embed","description":"

Returns a report embed token.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["v2","reports",":reportId","embed"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"24669cf7-483f-479f-bca9-d1ccfe11a251","description":{"content":"

(Required) The id of the report that the embed token is being requested for.

\n","type":"text/plain"},"type":"any","value":"","key":"reportId"}]}},"response":[{"id":"b86d297b-debe-4569-ae20-b3a09f7d0f2c","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/v2/reports/:reportId/embed","host":["https://api.mediavalet.com"],"path":["v2","reports",":reportId","embed"],"variable":[{"key":"reportId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"count\": \"\",\n \"thumbNailUrl\": \"\",\n \"type\": \"Video\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor0\": {}\n },\n \"interpolations\": {\n \"sit3\": {},\n \"velitf\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"2973c9da-239c-421d-b83d-8f9cbe5359ec","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/v2/reports/:reportId/embed","host":["https://api.mediavalet.com"],"path":["v2","reports",":reportId","embed"],"variable":[{"key":"reportId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"95b47ade-b09a-4e3f-99da-855cf04ac891","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/v2/reports/:reportId/embed","host":["https://api.mediavalet.com"],"path":["v2","reports",":reportId","embed"],"variable":[{"key":"reportId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0602c933-7a37-48b5-8e48-1d03f713bdc7"}],"id":"45129229-f825-41af-8b0e-a1b9c9ebb37c","_postman_id":"45129229-f825-41af-8b0e-a1b9c9ebb37c","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"SavedSearches","item":[{"name":"Retrieve Saved Searches","id":"307d9de0-8171-48fb-8af9-aa8981565b5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/savedsearches","description":"

Retrieves all custom saved searches.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["savedsearches"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"f71bb9d2-5e9c-4fe2-9a2c-b984c41bf442","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/savedsearches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"searchQuery\": \"\",\n \"ownerUserId\": \"\",\n \"ownerUserName\": \"\",\n \"sharedWithOthers\": \"\",\n \"pinnedSearchForUser\": \"\",\n \"pinnedSearchForGroups\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eu_4\": {}\n },\n \"interpolations\": {\n \"ex_1\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"None\"\n ]\n}"},{"id":"70bc52f7-6472-4405-8e4f-e54d67f8aa39","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/savedsearches"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d4dd7b75-4d6e-42c1-aa6a-ab2259e94b76","name":"A saved search was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/savedsearches"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3de51f06-b198-4eb1-8a45-95cf34f786d7","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/savedsearches"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"307d9de0-8171-48fb-8af9-aa8981565b5d"},{"name":"Create Saved Search","id":"c3dbdef8-dc69-43f9-ac55-5fa43ff640f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"searchQuery\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/savedsearches","description":"

Creates a new custom search.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["savedsearches"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"37c75d2f-db9e-428d-922c-8e67c6f2bda2","name":"The saved search was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"searchQuery\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/savedsearches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"searchQuery\": \"\",\n \"ownerUserId\": \"\",\n \"ownerUserName\": \"\",\n \"sharedWithOthers\": \"\",\n \"pinnedSearchForUser\": \"\",\n \"pinnedSearchForGroups\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eu_4\": {}\n },\n \"interpolations\": {\n \"ex_1\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"None\"\n ]\n}"},{"id":"915b717a-66a4-481d-ab1e-8d62e0f3190d","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"searchQuery\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/savedsearches"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8cb8472f-2d69-4d0c-bec0-9dee57295667","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"searchQuery\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/savedsearches"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"53e9795f-ff2d-4ddb-bf96-51200d870468","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"searchQuery\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/savedsearches"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c3dbdef8-dc69-43f9-ac55-5fa43ff640f0"},{"name":"Retrieve Pinned Saved Searches","id":"d0850a46-db74-4aef-ae27-e3d26b0f9493","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/savedsearches/pinned","description":"

Retrieves all pinned saved searches.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["savedsearches","pinned"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"715e5955-bf7a-48a7-8741-0463a8cc916f","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/savedsearches/pinned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"searchQuery\": \"\",\n \"ownerUserId\": \"\",\n \"ownerUserName\": \"\",\n \"sharedWithOthers\": \"\",\n \"pinnedSearchForUser\": \"\",\n \"pinnedSearchForGroups\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eu_4\": {}\n },\n \"interpolations\": {\n \"ex_1\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"None\"\n ]\n}"},{"id":"da2f06ef-bb58-488f-a767-e468de462f19","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/savedsearches/pinned"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2aaf1cc1-61bf-42ea-b853-1b7f555ef828","name":"A pinned saved search was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/savedsearches/pinned"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"37c78ccb-2c13-4599-9167-1408a79d42f3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/savedsearches/pinned"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d0850a46-db74-4aef-ae27-e3d26b0f9493"},{"name":"Retrieve Saved Search","id":"7d14cd19-4422-41f7-a395-71a1af88e251","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/savedsearches/:savedSearchId","description":"

Retrieves a custom saved search.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["savedsearches",":savedSearchId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"5c6f1153-922b-4371-b73d-4b85157e82fe","description":{"content":"

(Required) The saved search id.

\n","type":"text/plain"},"type":"any","value":"","key":"savedSearchId"}]}},"response":[{"id":"24fe3e3f-7f96-4460-bbae-d2bdd32804c7","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"searchQuery\": \"\",\n \"ownerUserId\": \"\",\n \"ownerUserName\": \"\",\n \"sharedWithOthers\": \"\",\n \"pinnedSearchForUser\": \"\",\n \"pinnedSearchForGroups\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eu_4\": {}\n },\n \"interpolations\": {\n \"ex_1\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"None\"\n ]\n}"},{"id":"1c64a728-e543-4aad-affc-8d8b9599aae6","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cc89e23a-9626-498d-8171-3d222b3c470f","name":"A saved search was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"51ceddf6-4cb8-4ac3-919a-57522c3d70b9","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7d14cd19-4422-41f7-a395-71a1af88e251"},{"name":"Remove Saved Search","id":"40d5a41d-650e-4518-9b3e-c71553b545d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/savedsearches/:savedSearchId","description":"

Removes a custom saved search.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["savedsearches",":savedSearchId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"0bc0f61b-7dbb-404e-a6d2-4846800617b2","description":{"content":"

(Required) The saved search id.

\n","type":"text/plain"},"type":"any","value":"","key":"savedSearchId"}]}},"response":[{"id":"d02ece37-995a-4a60-beec-283c22d06012","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"07c0ca8f-655d-44ad-ae3c-7d9fd0cdaffd","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"29c37076-768b-4f16-bc07-f77373ce0e94","name":"A saved search was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a8d6c3d1-76d5-4d41-ac75-e1efcc982edd","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"40d5a41d-650e-4518-9b3e-c71553b545d3"},{"name":"Update Saved Search","id":"94e3e651-cc4a-4dae-8486-e1f0a8dd4527","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/savedsearches/:savedSearchId","description":"

Update a custom saved search with a list of patch operations.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["savedsearches",":savedSearchId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"15fd990e-05b7-45e5-89cd-30d61612a358","description":{"content":"

(Required) The saved search id.

\n","type":"text/plain"},"type":"any","value":"","key":"savedSearchId"}]}},"response":[{"id":"52b5962b-b19d-4efa-8412-4d6f15c8454a","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fc9bd6dd-7ccc-465d-bf1b-b3e10f2f77f8","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"03fc3e8b-b6bb-4624-97dc-933687e56910","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2ca4bded-e1dc-4e20-b3bf-f21986cd0ab7","name":"A saved search was not found.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"14172997-851c-45d6-9f1f-5609ab284f7b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId"],"variable":[{"key":"savedSearchId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"94e3e651-cc4a-4dae-8486-e1f0a8dd4527"},{"name":"Retrieve Saved Search Shares","id":"ea0c5a14-2fed-44f9-ae08-3e97ee6cc76f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","description":"

Retrieves shares for a saved search.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["savedsearches",":savedSearchId","share"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"93a0c849-31ba-4091-9891-993a207821d8","description":{"content":"

(Required) The saved search id.

\n","type":"text/plain"},"type":"any","value":"","key":"savedSearchId"}]}},"response":[{"id":"476cf7e8-7aa6-4e12-bfed-d3c2ae8b0b58","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"sharedWithUsers\": [\n \"\",\n \"\"\n ],\n \"sharedWithGroups\": [\n \"\",\n \"\"\n ],\n \"pinnedForGroups\": [\n \"\",\n \"\"\n ]\n}"},{"id":"fc8ad23b-ee52-4b51-9d0b-3aa1591bac07","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"998822a6-b65b-4a18-99f3-ea02f41fb24d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e0fedfee-d70f-4e74-880c-2142ffa1ebea","name":"A saved search was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1322ee09-24e0-486c-a9ee-1463de1168ca","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ea0c5a14-2fed-44f9-ae08-3e97ee6cc76f"},{"name":"Create Saved Search","id":"5b96f572-b9f9-4cbd-a073-78c236b184a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"savedSearchId\": \"\",\n \"shareWithUsers\": [\n \"\",\n \"\"\n ],\n \"shareWithGroups\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","description":"

Creates a custom saved search.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["savedsearches",":savedSearchId","share"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"b4952210-4a3f-4c47-86bc-f9bca94d9d17","description":{"content":"

(Required)

\n","type":"text/plain"},"type":"any","value":"","key":"savedSearchId"}]}},"response":[{"id":"ff2bbece-61db-4384-ab62-29457392c994","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"savedSearchId\": \"\",\n \"shareWithUsers\": [\n \"\",\n \"\"\n ],\n \"shareWithGroups\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"02426440-8fb0-4e5e-bb05-1702d2806cba","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"savedSearchId\": \"\",\n \"shareWithUsers\": [\n \"\",\n \"\"\n ],\n \"shareWithGroups\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fc173027-e07b-4cea-9ada-1e0070d916c7","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"savedSearchId\": \"\",\n \"shareWithUsers\": [\n \"\",\n \"\"\n ],\n \"shareWithGroups\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ac5b3d9e-143b-4e71-b075-882ee01cb6db","name":"A saved search was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"savedSearchId\": \"\",\n \"shareWithUsers\": [\n \"\",\n \"\"\n ],\n \"shareWithGroups\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5bffc48f-71ee-400c-b766-f57899fcfd51","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"savedSearchId\": \"\",\n \"shareWithUsers\": [\n \"\",\n \"\"\n ],\n \"shareWithGroups\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/savedsearches/:savedSearchId/share","host":["https://api.mediavalet.com"],"path":["savedsearches",":savedSearchId","share"],"variable":[{"key":"savedSearchId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5b96f572-b9f9-4cbd-a073-78c236b184a4"}],"id":"d1111daf-1119-47b2-aad3-5ea37b065df5","_postman_id":"d1111daf-1119-47b2-aad3-5ea37b065df5","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Searches","item":[{"name":"Retrieve Most Viewed Assets","id":"828f7181-e6f7-4ff0-a485-d2431562fba9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/mostViewed","description":"

Returns list of most viewed assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["mostViewed"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"5f182eeb-462f-4f80-9803-016fe91ac4aa","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/mostViewed"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"anim_de\": \"\",\n \"aute_b36\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"veniam_c_9\": \"\",\n \"officiaca2\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex_63c\": {},\n \"minim693\": {},\n \"consectetur2b\": {}\n },\n \"interpolations\": {\n \"velit0d\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ullamco__5\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"do_4_\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex7_\": {}\n },\n \"interpolations\": {\n \"dolore_980\": {},\n \"enim_43\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:assignCategory\"\n ]\n }\n ],\n \"staleAssets\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_1_8\": {}\n },\n \"interpolations\": {\n \"voluptate95\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"b3e39850-ad8d-4ea2-85e3-769c1c49f3df","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/mostViewed"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"828f7181-e6f7-4ff0-a485-d2431562fba9"},{"name":"Retrieve Facets","id":"d72d5745-4e3b-433b-a321-70c8a731bce5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/search/facets","description":"

Returns a collection of facets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["search","facets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"d2e9f6d4-df87-4e1e-82f4-567b4c176631","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/search/facets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"facetName\": \"\",\n \"facets\": {\n \"velita4\": \"\",\n \"ex_a98\": \"\"\n }\n },\n {\n \"facetName\": \"\",\n \"facets\": {\n \"elit2\": \"\",\n \"pariatur1\": \"\"\n }\n }\n]"},{"id":"d623819c-74ca-4bf1-b4e9-a23ebc7996b3","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/search/facets"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"328eb2ca-eec7-40d4-b732-aeb17d7b91ea","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/search/facets"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d72d5745-4e3b-433b-a321-70c8a731bce5"},{"name":"Retrieve Recently Uploaded Assets","id":"60755928-a09a-444a-a5e4-cc8e7ae4cb6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/recentlyUploaded","description":"

Returns list of recently uploaded assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["recentlyUploaded"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"8a8537c1-a7f9-42de-87e3-ecef66420916","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/recentlyUploaded"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"anim_de\": \"\",\n \"aute_b36\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"veniam_c_9\": \"\",\n \"officiaca2\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex_63c\": {},\n \"minim693\": {},\n \"consectetur2b\": {}\n },\n \"interpolations\": {\n \"velit0d\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ullamco__5\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"do_4_\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex7_\": {}\n },\n \"interpolations\": {\n \"dolore_980\": {},\n \"enim_43\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:assignCategory\"\n ]\n }\n ],\n \"staleAssets\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_1_8\": {}\n },\n \"interpolations\": {\n \"voluptate95\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"0f55e639-24e2-49a3-8f15-82a3ccdbe189","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/recentlyUploaded"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"60755928-a09a-444a-a5e4-cc8e7ae4cb6e"}],"id":"22e71b66-ba9b-479b-b8ac-3e74fa5e3bdd","_postman_id":"22e71b66-ba9b-479b-b8ac-3e74fa5e3bdd","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Sharing","item":[{"name":"Retrieve Shared Asset Information","id":"cdd3c2d1-4c25-4470-ac2c-0ea0b375a5c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/share/:shareCode","description":"

Retrieves shared assets information.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","share",":shareCode"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"0103f8b4-c08b-4d3b-9f1b-3ce2a057fc6a","description":{"content":"

(Required) The share code.

\n","type":"text/plain"},"type":"any","value":"","key":"shareCode"}]}},"response":[{"id":"bef97beb-ed4f-4431-a50e-5fbbf60951e5","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode"],"variable":[{"key":"shareCode"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"sharedAt\": \"\",\n \"sharedBy\": {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"organization\": \"\"\n },\n \"state\": \"\",\n \"expiryDate\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor_b\": {},\n \"fugiat402\": {}\n },\n \"interpolations\": {\n \"magnae\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"lightbox:viewAsset\"\n ]\n}"},{"id":"d9874348-cacb-4e0f-a456-6c32aea08cc2","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode"],"variable":[{"key":"shareCode"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9ef6e4cb-500b-414d-8d68-805f77b326f4","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode"],"variable":[{"key":"shareCode"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cdd3c2d1-4c25-4470-ac2c-0ea0b375a5c8"},{"name":"Retrieve Shared Assets","id":"127489cb-b684-47b3-a8fe-ec803a98ccab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/share/:shareCode/assets","description":"

Retrieves shared assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","share",":shareCode","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"931b7714-4b01-44f4-931b-bb8bbb4a75e6","description":{"content":"

(Required) The share code.

\n","type":"text/plain"},"type":"any","value":"","key":"shareCode"}]}},"response":[{"id":"78a12ac2-59b7-497e-ae15-e7a9b495e75e","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets"],"variable":[{"key":"shareCode"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"assetCount\": \"\",\n \"assets\": [\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"anim_de\": \"\",\n \"aute_b36\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"veniam_c_9\": \"\",\n \"officiaca2\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex_63c\": {},\n \"minim693\": {},\n \"consectetur2b\": {}\n },\n \"interpolations\": {\n \"velit0d\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"ullamco__5\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"do_4_\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex7_\": {}\n },\n \"interpolations\": {\n \"dolore_980\": {},\n \"enim_43\": {}\n },\n \"permissions\": [\n \"lightbox:share\",\n \"asset:assignCategory\"\n ]\n }\n ],\n \"staleAssets\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sed_1_8\": {}\n },\n \"interpolations\": {\n \"voluptate95\": {}\n },\n \"permissions\": [\n \"asset:shareAsLightbox\",\n \"brandedPortal:view\"\n ]\n}"},{"id":"7af8f5d4-55ac-4984-9a13-c3a173d35eb4","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets"],"variable":[{"key":"shareCode"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"bd007de8-1d3b-4c56-b296-93694bf4c639","name":"A shared asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets"],"variable":[{"key":"shareCode"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"66041323-3d35-490f-9457-f148e2a671e4","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets"],"variable":[{"key":"shareCode"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"127489cb-b684-47b3-a8fe-ec803a98ccab"},{"name":"Retrieves Shared Asset's Rendition Types By Share Code","id":"f94c6ac0-8a3d-425e-82df-8d51bc539ac8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/share/:shareCode/renditionKinds","description":"

Retrieves all the rendition types available for the given share code.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","share",":shareCode","renditionKinds"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"a903b5af-359c-4638-ba3e-c911b26899de","description":{"content":"

(Required) The share code.

\n","type":"text/plain"},"type":"any","value":"","key":"shareCode"}]}},"response":[{"id":"6c2a60b9-ee1d-4562-948b-47ee649130b3","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/renditionKinds","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","renditionKinds"],"variable":[{"key":"shareCode"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"renditionKindId\": \"\",\n \"code\": \"\",\n \"description\": \"\",\n \"height\": \"\",\n \"isDefault\": \"\",\n \"mimeType\": \"\",\n \"name\": \"\",\n \"quality\": \"\",\n \"targetFileExtension\": \"\",\n \"width\": \"\",\n \"colorspace\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"consectetur9de\": {},\n \"ex_f32\": {}\n },\n \"interpolations\": {\n \"labore16f\": {},\n \"dolor5\": {},\n \"amet38d\": {}\n },\n \"permissions\": [\n \"asset:shareAsWebGallery\",\n \"user:editEmail\"\n ]\n },\n {\n \"renditionKindId\": \"\",\n \"code\": \"\",\n \"description\": \"\",\n \"height\": \"\",\n \"isDefault\": \"\",\n \"mimeType\": \"\",\n \"name\": \"\",\n \"quality\": \"\",\n \"targetFileExtension\": \"\",\n \"width\": \"\",\n \"colorspace\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"veniam_25c\": {},\n \"qui__ec\": {},\n \"mollit_c\": {}\n },\n \"interpolations\": {\n \"sit_36d\": {},\n \"laborumf4\": {},\n \"quis_1\": {},\n \"nulla56\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:shareAsLightbox\"\n ]\n }\n]"},{"id":"1a85f81a-f231-4c62-ac0d-246ec897aa31","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/renditionKinds","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","renditionKinds"],"variable":[{"key":"shareCode"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c6919093-b33e-4f51-acdb-3091bec6f3a6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/renditionKinds","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","renditionKinds"],"variable":[{"key":"shareCode"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f94c6ac0-8a3d-425e-82df-8d51bc539ac8"},{"name":"Retrieve Shared Asset","id":"ea31fc16-929c-42c2-bd69-ef62135157d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId","description":"

Retrieves a shared asset for a given share code and asset id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","share",":shareCode","assets",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"6a3ea25a-49c0-4619-a3ae-ac45be2343aa","description":{"content":"

(Required) The share code.

\n","type":"text/plain"},"type":"any","value":"","key":"shareCode"},{"id":"fe20e99a-6085-49bf-ac18-f402a656fd04","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"0fa091db-88b4-48d5-aec1-b054b389d5c1","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId"],"variable":[{"key":"shareCode"},{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"title\": \"\",\n \"media\": {\n \"type\": \"\",\n \"small\": \"\",\n \"thumb\": \"\",\n \"large\": \"\",\n \"original\": \"\",\n \"medium\": \"\",\n \"download\": \"\",\n \"downloadRequest\": \"\",\n \"stream\": \"\",\n \"streamLoDef\": \"\",\n \"originalDimensions\": \"\",\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\",\n \"renditionItemCount\": \"\",\n \"autodeskUrn\": \"\",\n \"watermarked\": \"\",\n \"assetId\": \"\",\n \"streamingManifest\": \"\",\n \"fullStreamAvailable\": \"\"\n },\n \"file\": {\n \"id\": \"\",\n \"title\": \"\",\n \"fileName\": \"\",\n \"md5\": \"\",\n \"fileType\": \"\",\n \"sizeInBytes\": \"\",\n \"description\": \"\",\n \"keywords\": \"\",\n \"uploadedAt\": \"\",\n \"modifiedAt\": \"\",\n \"approvedAt\": \"\",\n \"disapprovedAt\": \"\",\n \"expiresAt\": \"\",\n \"imageHeight\": \"\",\n \"imageWidth\": \"\",\n \"frameRate\": \"\",\n \"length\": \"\",\n \"bitRate\": \"\",\n \"mimeType\": \"\",\n \"resolution\": \"\",\n \"colorMode\": \"\",\n \"aspectRatio\": \"\",\n \"orientation\": \"\",\n \"sharedRenditionWidth\": \"\",\n \"sharedRenditionHeight\": \"\",\n \"sharedRenditionFileExtension\": \"\",\n \"sharedRenditionFileSizeInBytes\": \"\"\n },\n \"description\": \"\",\n \"altText\": \"\",\n \"containerName\": \"\",\n \"status\": \"\",\n \"rating\": {\n \"average\": \"\",\n \"user\": \"\"\n },\n \"attributes\": {\n \"amet_a0e\": \"\",\n \"culpa_16\": \"\"\n },\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"categories\": [\n \"\",\n \"\"\n ],\n \"keywords\": [\n \"\",\n \"\"\n ],\n \"relatedassets\": [\n \"\",\n \"\"\n ],\n \"assetCheckOutComment\": \"\",\n \"assetCheckInComment\": \"\",\n \"checkedOutBy\": \"\",\n \"renderAsPdf\": \"\",\n \"wopiEnabled\": \"\",\n \"userViewCounts\": {\n \"Ut_86\": \"\",\n \"consectetur7c\": \"\",\n \"voluptate_94\": \"\"\n },\n \"createdAt\": \"\",\n \"hasVideoIntelligenceContent\": \"\",\n \"followed\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nostrud389\": {},\n \"non186\": {},\n \"amet_668\": {}\n },\n \"interpolations\": {\n \"incididunt4d\": {},\n \"in2\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsCdnLink\"\n ]\n}"},{"id":"90494ad0-779f-4f2c-9247-039d6a2f863d","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId"],"variable":[{"key":"shareCode"},{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d12b7668-033e-4ffc-a774-8b75ef4f504e","name":"A shared asset was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId"],"variable":[{"key":"shareCode"},{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1e6ea998-b9f4-4363-92c8-df87bc815b0f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId"],"variable":[{"key":"shareCode"},{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ea31fc16-929c-42c2-bd69-ef62135157d8"},{"name":"Retrieves Shared Asset's Rendition Types","id":"7feaf645-8237-453d-a919-6d94279f1ca9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId/renditions","description":"

Retrieves all rendition types for a given shared asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","share",":shareCode","assets",":assetId","renditions"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"16df345d-03fa-4982-ab7c-9566c35f9c40","description":{"content":"

(Required) The share code.

\n","type":"text/plain"},"type":"any","value":"","key":"shareCode"},{"id":"0c6e374d-44a4-4fc2-aec0-8104e8454134","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"1f3df649-c6fd-448e-b757-d4e40e88138e","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId/renditions","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId","renditions"],"variable":[{"key":"shareCode"},{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"renditionTypeId\": \"\",\n \"height\": \"\",\n \"width\": \"\",\n \"length\": \"\",\n \"mimeType\": \"\",\n \"watermarked\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eu_be7\": {},\n \"quis_be\": {},\n \"laboree\": {},\n \"in4b\": {},\n \"qui88c\": {}\n },\n \"interpolations\": {\n \"velit_69\": {},\n \"occaecat44\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:createImageCrop\"\n ]\n },\n {\n \"id\": \"\",\n \"renditionTypeId\": \"\",\n \"height\": \"\",\n \"width\": \"\",\n \"length\": \"\",\n \"mimeType\": \"\",\n \"watermarked\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"labore_b99\": {},\n \"minim24\": {}\n },\n \"interpolations\": {\n \"fugiat9\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"lightbox:share\"\n ]\n }\n]"},{"id":"1feb14b4-6150-414d-891a-b2a9d37c6ff7","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId/renditions","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId","renditions"],"variable":[{"key":"shareCode"},{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a982b3bd-82ab-4ed6-b39d-9b747e649974","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId/renditions","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId","renditions"],"variable":[{"key":"shareCode"},{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7feaf645-8237-453d-a919-6d94279f1ca9"},{"name":"Retrieve Shared Asset's Rendition","id":"2265bb07-d7fb-4616-ba37-1414e470c584","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId/renditions/:renditionKindId","description":"

Retrieves a specific rendition for a given shared asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","share",":shareCode","assets",":assetId","renditions",":renditionKindId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"59378845-1dbb-4d85-8f2a-35dec66b6188","description":{"content":"

(Required) The share code.

\n","type":"text/plain"},"type":"any","value":"","key":"shareCode"},{"id":"7a693dc3-d58b-4591-9a7d-ae3ec23e1911","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"53a557e8-3489-42e5-9777-cfc9fa1c790c","description":{"content":"

(Required) The specific rendition kind id.

\n","type":"text/plain"},"type":"any","value":"","key":"renditionKindId"}]}},"response":[{"id":"bb4c6b7d-8107-40eb-9796-1fe295f0d9d4","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId/renditions/:renditionKindId","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId","renditions",":renditionKindId"],"variable":[{"key":"shareCode"},{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"renditionUrl\": \"\",\n \"thumbnailUrl\": \"\",\n \"pages\": {\n \"count\": \"\",\n \"offSet\": \"\",\n \"renditions\": [\n {\n \"sequence\": \"\",\n \"url\": \"\"\n },\n {\n \"sequence\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"sasExpiry\": \"\",\n \"sasRenewal\": \"\"\n}"},{"id":"70128426-9911-430b-890a-130a7db39e1b","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId/renditions/:renditionKindId","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId","renditions",":renditionKindId"],"variable":[{"key":"shareCode"},{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ad853a51-7bff-40f9-8a8b-4d81effe3266","name":"The asset rendition was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId/renditions/:renditionKindId","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId","renditions",":renditionKindId"],"variable":[{"key":"shareCode"},{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b663c0ea-f4d3-49bb-ba90-ecd67b106085","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/assets/:assetId/renditions/:renditionKindId","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","assets",":assetId","renditions",":renditionKindId"],"variable":[{"key":"shareCode"},{"key":"assetId"},{"key":"renditionKindId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2265bb07-d7fb-4616-ba37-1414e470c584"},{"name":"Create Share","id":"9837ab55-e740-4352-bff6-a9558d45a5e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareAssets","description":"

Initiate a share operation for a given set of assets.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["shareAssets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"95f49b8e-48d7-40b2-a44a-a884095f5d9c","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareAssets"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"shareId\": \"\",\n \"lightboxId\": \"\",\n \"sharedVia\": \"Unknown\",\n \"link\": \"\"\n}"},{"id":"7a58eac1-bd35-40dd-99bb-ff3cf2492e12","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareAssets"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e92df487-6843-4a6a-a8af-e69468f521d1","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareAssets"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d3901dc9-8676-480f-885d-ba29e8d9488f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareAssets"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"917bba89-1369-40d9-ba85-1c91b20858e5","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareAssets"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9837ab55-e740-4352-bff6-a9558d45a5e5"},{"name":"Create Share For Lightbox Set","id":"9756789e-cf80-4081-92ec-b15b28189ea5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareLightboxes","description":"

Initiate a share operation for a given set of lightbox.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["shareLightboxes"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"475439e5-44e7-4bb7-a182-d4406b8d01a0","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareLightboxes"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"shareId\": \"\",\n \"lightboxId\": \"\",\n \"sharedVia\": \"Unknown\",\n \"link\": \"\"\n}"},{"id":"a4d130ec-5057-4954-982b-cd644611a6f0","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareLightboxes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9634bb85-8412-4f72-9db0-6b50be4d82cd","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareLightboxes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"31831de0-c0d2-4333-97f5-1aea4447d181","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareLightboxes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7e94a135-9876-4392-829a-677f0f35fc35","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"shareTo\": \"Unknown\",\n \"shareVia\": \"Link\",\n \"allowAssetDownload\": \"\",\n \"images\": {\n \"shareOriginals\": \"\",\n \"format\": \"\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"spectrum\": \"SRgb\",\n \"resolution\": \"Web\",\n \"addWatermark\": \"\",\n \"watermarkUrl\": \"\",\n \"includeContactSheet\": \"\",\n \"contactSheet\": {\n \"rows\": \"\",\n \"cols\": \"\",\n \"logoBlobUrl\": \"\"\n },\n \"renditionType\": \"HighDefinition\"\n },\n \"videos\": {\n \"shareOriginals\": \"\",\n \"format\": \"Mp4\",\n \"dimensions\": {\n \"width\": \"\",\n \"height\": \"\",\n \"customDimensions\": \"\"\n },\n \"renditionType\": \"Undefined\"\n },\n \"audio\": {\n \"shareOriginals\": \"\",\n \"quality\": {\n \"value\": \"\",\n \"unit\": \"\"\n },\n \"format\": \"Mp3\"\n },\n \"documents\": {\n \"shareOriginals\": \"\",\n \"format\": \"Unknown\"\n },\n \"message\": {\n \"recipients\": [\n \"\",\n \"\"\n ],\n \"text\": \"\"\n },\n \"ids\": [\n \"\",\n \"\"\n ],\n \"includeContactSheet\": \"\",\n \"shareCode\": \"\",\n \"lightboxId\": \"\",\n \"lightboxName\": \"\",\n \"lightboxDescription\": \"\",\n \"DynamicWebGallery\": \"\",\n \"gallerySettings\": {\n \"expiryDate\": \"\",\n \"galleryPassword\": \"\"\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/shareLightboxes"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9756789e-cf80-4081-92ec-b15b28189ea5"},{"name":"Create Gallery Authorization","id":"d6d32bbf-aadd-4dcb-9866-801752ec529c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/share/:shareCode/authorize","description":"

Creates a gallery authorization request.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","share",":shareCode","authorize"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"7b146c08-f150-444b-8e7c-eac8133a823f","description":{"content":"

(Required) The share code.

\n","type":"text/plain"},"type":"any","value":"","key":"shareCode"}]}},"response":[{"id":"a5250bb6-620f-42d4-a643-8da7c1bb5794","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/authorize","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","authorize"],"variable":[{"key":"shareCode"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"sessionId\": \"\"\n}"},{"id":"f8237764-aac0-4849-9a79-79f3a1bf336e","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/authorize","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","authorize"],"variable":[{"key":"shareCode"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"14b4bc7d-1b5a-45c6-b126-91a08ee9f983","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/share/:shareCode/authorize","host":["https://api.mediavalet.com"],"path":["public","share",":shareCode","authorize"],"variable":[{"key":"shareCode"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d6d32bbf-aadd-4dcb-9866-801752ec529c"}],"id":"29b0d767-f5c3-49f2-b4cc-29eb0ec6a473","_postman_id":"29b0d767-f5c3-49f2-b4cc-29eb0ec6a473","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"TermsAndConditions","item":[{"name":"Retrieve Terms And Conditions","id":"c209fb46-ba0d-4972-af3c-51a69ff165e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/:domainName/termsAndConditions","description":"

Retrieves the terms and conditions for a given domain name.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":domainName","termsAndConditions"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"d11e0033-3834-45c9-acd5-4fe960436fb3","description":{"content":"

(Required) The domain name.

\n","type":"text/plain"},"type":"any","value":"","key":"domainName"}]}},"response":[{"id":"18c003ed-a44f-4cde-9f13-4c0af5b5ce29","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/:domainName/termsAndConditions","host":["https://api.mediavalet.com"],"path":["public",":domainName","termsAndConditions"],"variable":[{"key":"domainName"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"displayTermsAndConditions\": \"\",\n \"termsAcceptanceRequiredForLogin\": \"\",\n \"termsAndConditionsNotice\": \"\",\n \"termsAndConditionsUpdated\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"adipisicingdf\": {}\n },\n \"interpolations\": {\n \"Utaa8\": {},\n \"Lorem32\": {},\n \"non__1\": {},\n \"cupidatat527\": {}\n },\n \"permissions\": [\n \"asset:shareAsLink\",\n \"asset:shareAsBrandedPortal\"\n ]\n}"},{"id":"cd33e1a3-2456-41c5-8058-e52149c2bef3","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/public/:domainName/termsAndConditions","host":["https://api.mediavalet.com"],"path":["public",":domainName","termsAndConditions"],"variable":[{"key":"domainName"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c209fb46-ba0d-4972-af3c-51a69ff165e8"}],"id":"56517a7a-53ac-4ad8-a822-75ee341f2d55","_postman_id":"56517a7a-53ac-4ad8-a822-75ee341f2d55","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Uploads","item":[{"name":"Complete Upload","id":"dda6071a-4d0b-4221-8d3d-311b51b516ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"1ca8e3da-996b-4f05-94d2-a7d55320c30c","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"592b669e-7759-4c03-b333-c7d9688a44b3","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"uploadUrl\": \"\",\n \"uploadFileName\": \"\",\n \"mediaFileId\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ullamco__8\": {},\n \"aliquaed5\": {},\n \"quiddd\": {}\n },\n \"interpolations\": {\n \"reprehenderita\": {}\n },\n \"permissions\": [\n \"asset:downloadFromPortal\",\n \"lightbox:share\"\n ]\n}"},{"id":"7ce1adf4-4fe7-437e-ad23-dd097116695a","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in1e\": {},\n \"officiaef\": {},\n \"deserunt8\": {}\n },\n \"interpolations\": {\n \"nisi_a\": {},\n \"consequat_7_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"0b9a38c6-fb89-408a-a38b-7474ad16af23","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fc49487c-0e0f-43dd-9c53-f89fbb1aa9ff","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cec999c6-b79a-4596-9fe0-2c3e59b4cb44","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"filename\": \"\",\n \"title\": \"\",\n \"description\": \"\",\n \"fileSizeInBytes\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dda6071a-4d0b-4221-8d3d-311b51b516ec"},{"name":"Update Asset","id":"9e06f3d5-9483-4f7f-9024-fd868052facd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId","description":"

Update asset with a list of patch operations.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"27fc9060-cde7-4248-beec-7c86d431abc7","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"5685753c-032f-4889-a941-c607c0feebf5","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod5\": {},\n \"Duis_5\": {}\n },\n \"interpolations\": {\n \"tempor_4\": {}\n },\n \"permissions\": [\n \"asset:createImageCrop\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"e5719886-2548-4e28-a89e-cee9cbdb8e47","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a5ef1902-b655-431a-9272-7db45b4144aa","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"70555325-eae5-494a-8801-4ea17e0aefb7","name":"The asset was not found.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId"],"variable":[{"key":"assetId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9e06f3d5-9483-4f7f-9024-fd868052facd"},{"name":"Create Asset","id":"5cbe991f-1cd3-456f-b1d3-c44923e316e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads","description":"

Creates an asset and returns newly created asset information.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"0852584d-9a19-4861-a222-465658cc5ad5","name":"The asset was successfully created.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"uploadUrl\": \"\",\n \"uploadFileName\": \"\",\n \"mediaFileId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ut4\": {},\n \"sed_54\": {}\n },\n \"interpolations\": {\n \"nulla_9\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"9b5db730-0d21-41af-920c-de656431c4c7","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"in1e\": {},\n \"officiaef\": {},\n \"deserunt8\": {}\n },\n \"interpolations\": {\n \"nisi_a\": {},\n \"consequat_7_\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"lightbox:assignAsset\"\n ]\n}"},{"id":"db7f559a-c8a7-464e-9e83-4bce65a2a60d","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2da43c3e-a7e4-40c1-9a48-9b8d9c66b848","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"bbd95aee-1c37-484d-a9ae-78f5b52cc4a1","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"fileSizeInBytes\": \"\",\n \"filename\": \"\",\n \"fileNameVersioning\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5cbe991f-1cd3-456f-b1d3-c44923e316e3"},{"name":"Validate Uploads","id":"f989977c-2e37-41bc-b25e-a1d01c0b975e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n },\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/validate","description":"

Validate a collection of uploads.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads","validate"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"a670a732-d8db-4a42-98e8-e5e1f7eb5984","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n },\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/validate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"fileName\": \"\",\n \"validationStatus\": \"\",\n \"assetVersionMessage\": \"\",\n \"attributePolicy\": {\n \"createUploadAttributes\": {\n \"officia3a\": \"\",\n \"uta01\": \"\"\n }\n },\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex08\": {},\n \"sed_ab4\": {},\n \"suntb3\": {},\n \"magna__\": {}\n },\n \"interpolations\": {\n \"dolor_18\": {},\n \"incididunt_a\": {}\n },\n \"permissions\": [\n \"asset:shareAsLink\",\n \"asset:shareAsWebGallery\"\n ]\n },\n {\n \"fileName\": \"\",\n \"validationStatus\": \"\",\n \"assetVersionMessage\": \"\",\n \"attributePolicy\": {\n \"createUploadAttributes\": {\n \"ut_1f3\": \"\"\n }\n },\n \"message\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"mollite\": {}\n },\n \"interpolations\": {\n \"Ut_8\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:shareAsZippedFile\"\n ]\n }\n]"},{"id":"4d2d9efe-c4b9-494a-8048-215d50c54861","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n },\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/validate"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ee628c41-26f3-443c-8d41-fc215c84598b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n },\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/validate"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0cf852d2-fa6b-4632-a976-7f4be6457560","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n },\n {\n \"fileName\": \"\",\n \"size\": \"\",\n \"lastModifiedDate\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/validate"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f989977c-2e37-41bc-b25e-a1d01c0b975e"},{"name":"Create Asset Association With Keywords","id":"760427d0-b539-498b-a984-f2edaf246e8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId/keywords","description":"

Associates list of keywords to specified asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId","keywords"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"74ccd4cf-caa3-4533-98ea-dcc526fbfc00","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"7c084dc2-31d3-4bd1-888b-0b38a0a79d3a","name":"Successfully associated list of keywords to asset.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/keywords","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","keywords"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n \"\",\n \"\"\n]"},{"id":"47c5b277-cd91-4216-8b6e-9341ba05596e","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/keywords","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","keywords"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"802235c8-652a-472f-b4dc-16b16a3685b1","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/keywords","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","keywords"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2928ed9e-2af7-45b3-93f5-4901a89f2358","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/keywords","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","keywords"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"760427d0-b539-498b-a984-f2edaf246e8c"},{"name":"Create Asset Attributes","id":"919be449-7b33-4ac7-a203-4d12127c89b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId/attributes","description":"

Add attributes to an asset.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId","attributes"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"444d06be-a706-4da1-82a4-d16fe6a13746","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"c3c97fc0-8ebf-4566-af49-889d25ff8e12","name":"Successfully added attributes to asset.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/attributes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","attributes"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]"},{"id":"a1ed3c67-f08e-41a2-9330-70f2b8e470ae","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/attributes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","attributes"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"81f63b89-145e-4f51-b691-46e79a25041a","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/attributes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","attributes"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"63e440d1-372b-4f3b-9e59-8ac8bbc0ca13","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/attributes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","attributes"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e972c824-4154-4091-9268-f05bba8586bf","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"Utc4a\": \"\",\n \"labore_fc\": \"\",\n \"ind65\": \"\"\n },\n {\n \"incididunt8c2\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/attributes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","attributes"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"919be449-7b33-4ac7-a203-4d12127c89b8"},{"name":"Create Asset Association With Categories","id":"e8be8d01-0495-44d0-b883-31a3d2eeef0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId/categories","description":"

Associates specified asset into list of categories.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId","categories"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"1c3eb597-85ef-4197-b414-100f74ffadbe","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"045be274-7c7f-4730-8b2b-d8182878b38e","name":"Asset successfully associated with list of categories.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/categories","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n \"\",\n \"\"\n]"},{"id":"939f8b62-a2c3-4041-befd-8bc2a0b3ff18","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/categories","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f383f6c0-bbc5-4408-b092-aaaa2b128f91","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/categories","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f22e4c68-fff6-4f1c-b422-9b7072255803","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n \"\",\n \"\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/categories","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","categories"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e8be8d01-0495-44d0-b883-31a3d2eeef0c"},{"name":"Create Asset Association With Lightbox","id":"74435ff6-0f68-470f-afed-b78e8bc21bff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId/lightboxes","description":"

Add asset to a lightbox.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId","lightboxes"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"aa15ff76-62b8-4a7e-9274-42cc512bb87c","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"c7091384-730c-4975-a10c-50f6fe993cd6","name":"The asset was successfully added to the lightbox.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/lightboxes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","lightboxes"],"variable":[{"key":"assetId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor_0c\": {},\n \"nisi_d6\": {}\n },\n \"interpolations\": {\n \"essea\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:assignCategory\"\n ]\n}"},{"id":"2e5487cc-a52e-4e84-bc8d-358233c3d88b","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/lightboxes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","lightboxes"],"variable":[{"key":"assetId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4557aa14-73b1-4d82-bc46-33373536fec0","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/lightboxes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","lightboxes"],"variable":[{"key":"assetId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"62e7a10a-3378-4c0c-90a2-f72e3781778f","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/lightboxes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","lightboxes"],"variable":[{"key":"assetId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2749f6d8-e311-4e19-b1ec-1333820e3b5e","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approverId\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/lightboxes","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","lightboxes"],"variable":[{"key":"assetId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"74435ff6-0f68-470f-afed-b78e8bc21bff"},{"name":"Create Upload Association With Lightbox","id":"505bb74b-5121-402c-af27-b9a93611849b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/:uploadId/lightboxesassets","description":"

Add uploaded asset to a lightbox.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":uploadId","lightboxesassets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"bb48d407-6936-42a5-b20c-18a03421a908","description":{"content":"

(Required) The upload id.

\n","type":"text/plain"},"type":"any","value":"","key":"uploadId"}]}},"response":[{"id":"57db7f96-261d-4278-b234-2b012e5e5426","name":"Successfully added uploaded asset to lightbox.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:uploadId/lightboxesassets","host":["https://api.mediavalet.com"],"path":["uploads",":uploadId","lightboxesassets"],"variable":[{"key":"uploadId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor_0c\": {},\n \"nisi_d6\": {}\n },\n \"interpolations\": {\n \"essea\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:assignCategory\"\n ]\n}"},{"id":"100a1723-563b-4178-85a9-4a50aa31240d","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:uploadId/lightboxesassets","host":["https://api.mediavalet.com"],"path":["uploads",":uploadId","lightboxesassets"],"variable":[{"key":"uploadId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"af7ad7d0-35c4-45d6-830e-4f09630581a6","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:uploadId/lightboxesassets","host":["https://api.mediavalet.com"],"path":["uploads",":uploadId","lightboxesassets"],"variable":[{"key":"uploadId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f270c736-1a48-4e60-bad2-e6af88501413","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:uploadId/lightboxesassets","host":["https://api.mediavalet.com"],"path":["uploads",":uploadId","lightboxesassets"],"variable":[{"key":"uploadId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"505bb74b-5121-402c-af27-b9a93611849b"},{"name":"Create Lightbox Association With Asset List","id":"fa1b2f1b-e420-4ba7-bd4e-d815f6e65e38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"approverId\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"deserunt3\": {}\n },\n \"interpolations\": {\n \"eiusmod_\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"user:editEmail\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/lightboxes/:lightboxId/assets","description":"

Add a list of assets to a lightbox.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads","lightboxes",":lightboxId","assets"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"094c37c6-9c99-4867-961f-232611e447df","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"373b4345-8421-46b2-a707-51593289858e","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"approverId\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"deserunt3\": {}\n },\n \"interpolations\": {\n \"eiusmod_\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"user:editEmail\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["uploads","lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor_0c\": {},\n \"nisi_d6\": {}\n },\n \"interpolations\": {\n \"essea\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:assignCategory\"\n ]\n}"},{"id":"cb540a2b-079f-4555-ac9e-d6b5b9bf61aa","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"approverId\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"deserunt3\": {}\n },\n \"interpolations\": {\n \"eiusmod_\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"user:editEmail\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["uploads","lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1fe87fc3-22fb-4a94-9b6d-8ddd993bfc2b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"approverId\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"deserunt3\": {}\n },\n \"interpolations\": {\n \"eiusmod_\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"user:editEmail\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["uploads","lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"65518eea-a059-495e-8f92-242b5dccc952","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"approverId\": \"\",\n \"assetIds\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"deserunt3\": {}\n },\n \"interpolations\": {\n \"eiusmod_\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"user:editEmail\"\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/lightboxes/:lightboxId/assets","host":["https://api.mediavalet.com"],"path":["uploads","lightboxes",":lightboxId","assets"],"variable":[{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fa1b2f1b-e420-4ba7-bd4e-d815f6e65e38"},{"name":"Update Lightbox","id":"9d17eb09-e36e-4ba2-8834-8afd4eb9c04b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/uploads/:assetId/lightboxes/:lightboxId","description":"

Update the lightbox with a list of patch operations.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["uploads",":assetId","lightboxes",":lightboxId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"0970a3b6-068d-4453-8e79-6097b1a36d97","description":{"content":"

(Required) The asset id.

\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"id":"31e351bf-b018-4a92-b6c1-4c4be611fcac","description":{"content":"

(Required) The lightbox id.

\n","type":"text/plain"},"type":"any","value":"","key":"lightboxId"}]}},"response":[{"id":"85a33427-50c5-473f-ba11-d3ee4af6e9c4","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","lightboxes",":lightboxId"],"variable":[{"key":"assetId"},{"key":"lightboxId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"assetCount\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"approverId\": \"\",\n \"record\": {\n \"createdAt\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"modifiedAt\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"softDeletedAt\": \"\",\n \"softDeletedBy\": {\n \"id\": \"\",\n \"username\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\"\n },\n \"version\": {\n \"version\": \"\",\n \"current\": \"\",\n \"head\": \"\",\n \"parentid\": \"\",\n \"isversionable\": \"\",\n \"islatestversion\": \"\",\n \"ismajorversion\": \"\"\n }\n },\n \"requestedAt\": \"\",\n \"includedInBrandedPortalSync\": \"\",\n \"syncedBrandedPortals\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor_0c\": {},\n \"nisi_d6\": {}\n },\n \"interpolations\": {\n \"essea\": {}\n },\n \"permissions\": [\n \"lightbox:assignAsset\",\n \"asset:assignCategory\"\n ]\n}"},{"id":"992404e9-f1ab-4248-bfa2-693476a4f9de","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","lightboxes",":lightboxId"],"variable":[{"key":"assetId"},{"key":"lightboxId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6c9a6353-dd2c-4420-a475-ada4c7ba5107","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","lightboxes",":lightboxId"],"variable":[{"key":"assetId"},{"key":"lightboxId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a20c59c4-02a4-4f75-b0d8-c6788686e8e5","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/uploads/:assetId/lightboxes/:lightboxId","host":["https://api.mediavalet.com"],"path":["uploads",":assetId","lightboxes",":lightboxId"],"variable":[{"key":"assetId"},{"key":"lightboxId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9d17eb09-e36e-4ba2-8834-8afd4eb9c04b"}],"id":"df3141ed-3e65-44ef-8af2-dd6f025fff32","_postman_id":"df3141ed-3e65-44ef-8af2-dd6f025fff32","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"UserGroups","item":[{"name":"Retrieve Groups","id":"7329fc14-cebb-40d5-b3a5-de4dd94c470b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/groups","description":"

Retrieves list of groups that belong to the Organizational Unit.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["groups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"e3a6d7cc-3187-4808-af2e-4ce9d51eda50","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"isDefaultGroup\": \"\",\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor_b\": {},\n \"proident_fb8\": {},\n \"ullamco84d\": {}\n },\n \"interpolations\": {\n \"aute_c\": {},\n \"qui_b1\": {}\n }\n}"},{"id":"b790feff-a298-4f24-af81-9ce7b9d83822","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/groups"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"76d04c53-3443-4439-b3fb-fcd5ce78a1ee","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/groups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9d00316c-d5b7-4e2d-840f-228cfa18d16a","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/groups"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7329fc14-cebb-40d5-b3a5-de4dd94c470b"},{"name":"Create Group","id":"05d9cf6b-86b9-433d-98dc-3fb0408a4f03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/groups","description":"

Creates the user group and gives it permissions to the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["groups"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"761dd014-db64-46ea-a992-bb00b0478423","name":"Request was accepted.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/groups"},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"97cbf56d-4ff0-46f2-8d49-24aed03a02ca","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/groups"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fb5ac13b-58bc-4a76-998e-506b96811184","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/groups"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d88c81d3-5e22-4ddf-9966-528304a57105","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/groups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ded584e7-0f8a-4729-9fa5-403353df577b","name":"A group with the same name already exists.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/groups"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7d8c9ea7-a239-4d51-9802-6051533e20db","name":"The request failed because of a problem on the server.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/groups"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"05d9cf6b-86b9-433d-98dc-3fb0408a4f03"},{"name":"Retrieve Group Details","id":"5a636026-422a-4a4f-82e2-06b36a09e8d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/groups/:id","description":"

Retrieves group details based on group id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["groups",":id"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"42c02ff1-7a7c-48f6-86e7-5d5beb7c6b78","description":{"content":"

(Required) The group id.

\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"6d14750e-1e8a-4707-8013-a62b0c758c1b","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/groups/:id","host":["https://api.mediavalet.com"],"path":["groups",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"isDefaultGroup\": \"\",\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"occaecat6f\": {}\n },\n \"interpolations\": {\n \"doloref22\": {},\n \"incididuntb\": {},\n \"quise8\": {},\n \"ut87\": {}\n }\n },\n {\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"isDefaultGroup\": \"\",\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"culpa_36\": {}\n },\n \"interpolations\": {\n \"deserunt00f\": {},\n \"mollita\": {},\n \"Ut_f\": {},\n \"elit_5\": {}\n }\n }\n]"},{"id":"ab8570ad-d66b-4d78-a22f-d8cae58ffb69","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:id","host":["https://api.mediavalet.com"],"path":["groups",":id"],"variable":[{"key":"id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7e847ac7-338a-47ce-8391-66f0265b5702","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:id","host":["https://api.mediavalet.com"],"path":["groups",":id"],"variable":[{"key":"id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b039ce53-d646-491f-8bcf-ad41c0997717","name":"An user group was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:id","host":["https://api.mediavalet.com"],"path":["groups",":id"],"variable":[{"key":"id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d4ecc40f-732d-4390-bb71-bc37093628c5","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:id","host":["https://api.mediavalet.com"],"path":["groups",":id"],"variable":[{"key":"id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5a636026-422a-4a4f-82e2-06b36a09e8d0"},{"name":"Retrieve Group Categories","id":"fe3965c2-f007-4122-b240-24463abc61ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/groups/:userGroupId/categories","description":"

Retrieves list of categories based on the group id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["groups",":userGroupId","categories"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"23310ce0-df65-4914-b719-27b9a3e691f6","description":{"content":"

(Required) The group id.

\n","type":"text/plain"},"type":"any","value":"","key":"userGroupId"}]}},"response":[{"id":"c7244121-2101-41ea-bb19-4bb2403d9289","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"categories\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n }\n ],\n \"watermarkedCategories\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n }\n ],\n \"permissionRestrictedCategories\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n }\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolore_ff8\": {},\n \"in8\": {},\n \"mollitd4a\": {},\n \"infff\": {},\n \"amet_01\": {}\n },\n \"interpolations\": {\n \"in8\": {},\n \"eabad\": {},\n \"aliquip_da4\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"3532c43a-b1c4-4760-a622-6a2ffa4315ec","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0cc020b7-6b52-4020-a486-e059ddb2a3df","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"060110ab-01be-4f69-99f8-a88ddac74f0b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fe3965c2-f007-4122-b240-24463abc61ea"},{"name":"Update Group With Patch Operations","id":"c6e2e442-fe99-435c-b214-34163b973b36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/groups/:userGroupId/categories","description":"

Updates user group using a list of patch operations.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["groups",":userGroupId","categories"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"d0d28ede-0133-4286-a5c3-4bf42ed08550","description":{"content":"

(Required) The group id.

\n","type":"text/plain"},"type":"any","value":"","key":"userGroupId"}]}},"response":[{"id":"5f2e522d-88be-4c31-bfb6-e903eb301831","name":"Request was accepted.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"categories\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n }\n ],\n \"watermarkedCategories\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n }\n ],\n \"permissionRestrictedCategories\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"parentId\": \"\",\n \"tree\": {\n \"path\": \"\",\n \"name\": \"\",\n \"idPath\": \"\",\n \"id\": \"\"\n },\n \"subfolderCount\": \"\",\n \"hasDirectAccess\": \"\",\n \"permission\": \"\",\n \"inherited\": \"\"\n }\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolore_ff8\": {},\n \"in8\": {},\n \"mollitd4a\": {},\n \"infff\": {},\n \"amet_01\": {}\n },\n \"interpolations\": {\n \"in8\": {},\n \"eabad\": {},\n \"aliquip_da4\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"lightbox:transferOwnership\"\n ]\n}"},{"id":"663fd4ca-6a39-42c8-9928-7860e7077e29","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0af1b0e7-eb15-4d50-a947-a9b0fe6392fe","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0048eec3-0d2f-437d-9e19-2e20f0000a3c","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2c4aee2a-cb3c-4d9b-9032-de8047a8009c","name":"An user group was not found.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a145358e-982e-4005-be5f-2b5524c4d58f","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId/categories","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId","categories"],"variable":[{"key":"userGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c6e2e442-fe99-435c-b214-34163b973b36"},{"name":"Update Group","id":"77ab9c63-b46d-4019-b0e0-527e9a47d2ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/groups/:userGroupId","description":"

Updates user group and gives/revokes permission to the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["groups",":userGroupId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"850234df-c581-498b-8bd8-2c940692d5e3","description":{"content":"

(Required) The group id.

\n","type":"text/plain"},"type":"any","value":"","key":"userGroupId"}]}},"response":[{"id":"e9106fa9-2b33-4f77-bb27-e3f3b448328d","name":"Request was accepted.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"isDefaultGroup\": \"\",\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor_b\": {},\n \"proident_fb8\": {},\n \"ullamco84d\": {}\n },\n \"interpolations\": {\n \"aute_c\": {},\n \"qui_b1\": {}\n }\n}"},{"id":"592e1b3b-3c25-405f-85d2-db51355af2b5","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"213ecf78-0b41-4880-abdb-591e7b53c4a3","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b7038f57-6f71-48a3-a419-cadbdd7b3c38","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"019d7124-c4cb-47ed-986e-d44346969a0b","name":"An user group was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"17cf2dc0-1cb4-465d-8269-539163f6b33b","name":"The request failed because of a problem on the server.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"roleName\": \"\",\n \"roleDescription\": \"\",\n \"inheritedFrom\": [\n \"\",\n \"\"\n ],\n \"permissions\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"repositories\": [\n \"\",\n \"\"\n ],\n \"orgUnitId\": \"\",\n \"orgUnitName\": \"\",\n \"libraryName\": [\n \"\",\n \"\"\n ],\n \"hasCategoryDenyPolicy\": [\n \"\",\n \"\"\n ],\n \"hasCategoryAllowPolicy\": [\n \"\",\n \"\"\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exf\": {},\n \"nostrud_4\": {}\n },\n \"interpolations\": {\n \"adipisicing_5\": {},\n \"non4d\": {}\n }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"77ab9c63-b46d-4019-b0e0-527e9a47d2ad"},{"name":"Remove Group","id":"b9913d0a-1506-4ea4-b815-8ce249ea81b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/groups/:userGroupId","description":"

Removes the user group and detaches its permissions from the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["groups",":userGroupId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"8f7df1ba-6d08-4160-9b3f-c2260bd41d32","description":{"content":"

(Required) The group id.

\n","type":"text/plain"},"type":"any","value":"","key":"userGroupId"}]}},"response":[{"id":"86276089-ab67-48d1-9076-60a0edc90197","name":"Request was accepted.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"aad010d7-a28a-46f0-a80e-2303a6617262","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e6923b45-360e-466f-8fbe-b0ba03a553b7","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"dd2c9a2a-275e-47aa-9b71-e15491b63b43","name":"Server refused the request.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"15f1c97e-ec5c-44dd-916a-578c68b09eae","name":"An user group was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a95a0db6-19a3-4a2b-8157-1208ce56ed31","name":"The request failed because of a problem on the server.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/groups/:userGroupId","host":["https://api.mediavalet.com"],"path":["groups",":userGroupId"],"variable":[{"key":"userGroupId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b9913d0a-1506-4ea4-b815-8ce249ea81b3"}],"id":"a249b2e7-c60f-44be-a31b-b6599371d957","_postman_id":"a249b2e7-c60f-44be-a31b-b6599371d957","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Users","item":[{"name":"Retrieve Users","id":"47344097-78bd-48b4-b09e-d8825ee295c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users","description":"

Retrieves a collection of users details belonging to the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"29ef2f42-1a7e-475a-8e4f-5f11bd4aebc7","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"Accepted\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"cillum34\": {},\n \"mollit_1c1\": {}\n },\n \"interpolations\": {\n \"anim_f\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"Accepted\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"MediaValet\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"mollit_b7\": {},\n \"commodo_145\": {}\n },\n \"interpolations\": {\n \"tempor_5a\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"None\"\n ]\n }\n]"},{"id":"570f6cf0-e4ff-497e-8af8-ff71e01c1cdd","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fb162020-863b-432d-93d9-790bd0bbe72b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"450d3470-5264-4abc-87ee-8dabac5e9184","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"47344097-78bd-48b4-b09e-d8825ee295c1"},{"name":"Create User","id":"07ae61e0-4bb0-4621-88c7-cdcb9c2bdfea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users","description":"

Creates a new user in the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"eefa4f9e-f847-45ca-addb-5c4b236aa6eb","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"TermsChanged\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod727\": {},\n \"reprehenderitc1\": {}\n },\n \"interpolations\": {\n \"non6\": {},\n \"anim0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"9cecce8d-0d14-4080-8240-30b3b9a8a1bb","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8b8be908-d4fc-4b5f-a804-dfbea503ce2c","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"05dbe66a-3176-48e8-a2cd-b07d01b9e19b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"84e93d58-ab09-4d3f-94a5-2ae315504541","name":"A user with same username already exists.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"07ae61e0-4bb0-4621-88c7-cdcb9c2bdfea"},{"name":"Retrieve Current User","id":"529abb34-7ab3-473c-b3c4-7d54c48572d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/current","description":"

Retrieves the user details for the current user in the request.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users","current"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"63e217d2-062c-4abb-b08f-7e4ff0470131","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/current"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"TermsChanged\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod727\": {},\n \"reprehenderitc1\": {}\n },\n \"interpolations\": {\n \"non6\": {},\n \"anim0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"4af1ff14-5c62-466a-be59-4d108b89e561","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users/current"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"dcb98ce0-4f3f-4534-80cd-c1a3365c3795","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users/current"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"529abb34-7ab3-473c-b3c4-7d54c48572d8"},{"name":"Update Current User","id":"0268861d-251b-4ebe-be93-53b3086cf77e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/current","description":"

Update the current user details with a list of patch operations.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users","current"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"f8aaa9b5-ada6-4726-a455-15c24441da8b","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/current"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"TermsChanged\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod727\": {},\n \"reprehenderitc1\": {}\n },\n \"interpolations\": {\n \"non6\": {},\n \"anim0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"82eb492a-1b04-49e9-b26a-0f7efee3f5b2","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/current"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"27661c6c-f775-44d7-ae8e-e411ec1688cc","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/current"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"02ee6cb9-f8dd-45b6-8907-9a6ad6096657","name":"The user was not found.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/current"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0268861d-251b-4ebe-be93-53b3086cf77e"},{"name":"Retrieve User","id":"eacb34b7-fea2-4b06-b4cd-e9f554cef539","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/:userId","description":"

Retrieves the user details for a given user id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users",":userId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"563873e4-5b21-4902-8133-03bd21b927dd","description":{"content":"

(Required) The user id.

\n","type":"text/plain"},"type":"any","value":"","key":"userId"}]}},"response":[{"id":"ab38c87c-ebfc-4b5b-aa0a-507b996ec006","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"TermsChanged\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod727\": {},\n \"reprehenderitc1\": {}\n },\n \"interpolations\": {\n \"non6\": {},\n \"anim0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"b1dcf7d6-abbb-4cae-8d37-58f1244a34e5","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"63249165-41e9-45a4-8227-58d9c692cb4b","name":"The user was not found.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8b5bed00-0d9e-40ff-b419-bd9cc65d6ac6","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eacb34b7-fea2-4b06-b4cd-e9f554cef539"},{"name":"Update User","id":"9fb71d7a-df47-4d28-b0a9-c5c274578213","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"IsApproved\": \"\",\n \"IsSuspended\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAcceptanceStatus\": \"Unknown\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/:userId","description":"

Update the user details for a given user id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users",":userId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"21f9b4d1-b69a-488b-ae20-875028fbcf27","description":{"content":"

(Required) The user id.

\n","type":"text/plain"},"type":"any","value":"","key":"userId"}]}},"response":[{"id":"df5931cb-6a23-4662-a9dd-e7a75b93c0e5","name":"Request was successful.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"IsApproved\": \"\",\n \"IsSuspended\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAcceptanceStatus\": \"Unknown\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"TermsChanged\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod727\": {},\n \"reprehenderitc1\": {}\n },\n \"interpolations\": {\n \"non6\": {},\n \"anim0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"bdb3be47-4d3f-4fe8-884d-b0311d450f88","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"IsApproved\": \"\",\n \"IsSuspended\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAcceptanceStatus\": \"Unknown\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e9d4660e-41c7-47ed-ab0e-10b4d153ac83","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"IsApproved\": \"\",\n \"IsSuspended\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAcceptanceStatus\": \"Unknown\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ece7bc43-2114-4aa7-ad37-bbb8a4e7996b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"IsApproved\": \"\",\n \"IsSuspended\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAcceptanceStatus\": \"Unknown\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6db72e8c-11c7-424b-8017-a025a2670bc9","name":"The user was not found.","originalRequest":{"method":"PUT","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"IsApproved\": \"\",\n \"IsSuspended\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAcceptanceStatus\": \"Unknown\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9fb71d7a-df47-4d28-b0a9-c5c274578213"},{"name":"Remove User","id":"4b5f2293-a577-4ee5-9631-0cab5c1f6bfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"}],"url":"https://api.mediavalet.com/users/:userId","description":"

Remove the given user id.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users",":userId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"06e3cbb2-b58d-4560-a81d-4180839220a1","description":{"content":"

(Required) The user id.

\n","type":"text/plain"},"type":"any","value":"","key":"userId"}]}},"response":[{"id":"fc92b91b-a053-4715-ae56-5ba908f2c5fb","name":"Request was successful.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1796ca81-5e12-420d-b309-1bdb31868e79","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8f33cc15-d5a7-4eee-9890-eb822e8a3cb3","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"281825cc-642f-4162-a281-435ae04418de","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"aefe72bf-3cc5-4fb1-b342-ce284be7931e","name":"The user was not found.","originalRequest":{"method":"DELETE","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4b5f2293-a577-4ee5-9631-0cab5c1f6bfa"},{"name":"Update User","id":"8d574011-74db-47cb-bd71-9b585ed3703e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/:userId","description":"

Update the user details for a given user id with a list of patch operations.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users",":userId"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"76934161-83d7-4a39-82d8-46f77d779d33","description":{"content":"

(Required) The user id.

\n","type":"text/plain"},"type":"any","value":"","key":"userId"}]}},"response":[{"id":"4ca13c7c-213c-4ad2-976e-4196944f9923","name":"Request was successful.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"TermsChanged\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod727\": {},\n \"reprehenderitc1\": {}\n },\n \"interpolations\": {\n \"non6\": {},\n \"anim0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"8544041b-e83d-42d7-8053-f86f1d91cfed","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f13ccc8d-2aa7-4bb6-b97d-52e6bcccf4d5","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cc03a0a2-486e-4698-b843-948149e0883c","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"bacb969b-0b6a-4efd-9861-b9dbadb9df14","name":"The user was not found.","originalRequest":{"method":"PATCH","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n },\n {\n \"op\": \"\",\n \"path\": \"\",\n \"value\": {},\n \"from\": \"\"\n }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/users/:userId","host":["https://api.mediavalet.com"],"path":["users",":userId"],"variable":[{"key":"userId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8d574011-74db-47cb-bd71-9b585ed3703e"},{"name":"Retrieve Approval Users","id":"1e719716-845e-4099-aaf6-0344c40a220e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/approvers","description":"

Retrieves the approval users in the library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users","approvers"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"b217a4c3-5cf0-417d-a8db-8022e2022654","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/approvers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"users\": [\n {\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"TermsChanged\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sint_8\": {}\n },\n \"interpolations\": {\n \"in_\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"asset:shareAsLightbox\"\n ]\n },\n {\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"Accepted\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"minim_b\": {},\n \"adipisicing_4\": {},\n \"veniam13\": {}\n },\n \"interpolations\": {\n \"aliquip_1e\": {},\n \"aliquip94\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"brandedPortal:view\"\n ]\n }\n ],\n \"userCount\": \"\"\n}"},{"id":"878c8581-3ce6-4bd6-bddb-7e3af20b21e9","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users/approvers"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1e719716-845e-4099-aaf6-0344c40a220e"},{"name":"Retrieve Custom Fields From User","id":"55645fdc-63bc-42ab-aa48-58352d417e44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/:id/customfields","description":"

Retrieves the collection of custom fields from a given user.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users",":id","customfields"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"d20f6fe6-90ef-4b2c-92bc-ef1536bed19d","description":{"content":"

(Required) The user id.

\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"acd10210-fbff-4ce9-aca1-3fc02f84cc4f","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/users/:id/customfields","host":["https://api.mediavalet.com"],"path":["users",":id","customfields"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n \"id\": \"\",\n \"label\": \"\",\n \"value\": {},\n \"sequence\": \"\"\n },\n {\n \"id\": \"\",\n \"label\": \"\",\n \"value\": {},\n \"sequence\": \"\"\n }\n]"},{"id":"e3c9582e-280d-4c17-9e0b-37df32b13976","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:id/customfields","host":["https://api.mediavalet.com"],"path":["users",":id","customfields"],"variable":[{"key":"id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"433441d0-5bdc-49df-9cc6-c27f4185f06b","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":{"raw":"https://api.mediavalet.com/users/:id/customfields","host":["https://api.mediavalet.com"],"path":["users",":id","customfields"],"variable":[{"key":"id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"55645fdc-63bc-42ab-aa48-58352d417e44"},{"name":"Retrieve Custom Fields From Library","id":"7d46112e-70e7-423d-91e4-afa7a4150b8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/registrationfields","description":"

Retrieves all custom fields from current user's library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users","registrationfields"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"31c8b675-e77e-457a-a4cd-2eee14cb929f","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/registrationfields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"fieldGroups\": [\n {\n \"groupId\": \"\",\n \"defaultAction\": \"\",\n \"fields\": [\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nonf\": {}\n },\n \"interpolations\": {\n \"magna_cb\": {},\n \"occaecat_d9\": {},\n \"cupidatat_fa5\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:createVideoClip\"\n ]\n },\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"reprehenderit_d9a\": {}\n },\n \"interpolations\": {\n \"esse_99\": {},\n \"esse8e0\": {},\n \"enim_1c2\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"asset:assignCategory\"\n ]\n }\n ],\n \"name\": \"\",\n \"isStandardField\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nulla_bba\": {}\n },\n \"interpolations\": {\n \"Utf3\": {},\n \"quia67\": {},\n \"exercitationaf9\": {},\n \"cupidatatf\": {},\n \"elitd\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"lightbox:share\"\n ]\n },\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"Excepteur_a\": {},\n \"laborum_a5a\": {},\n \"ad_3\": {}\n },\n \"interpolations\": {\n \"ipsum_ef\": {},\n \"nostrud__\": {}\n },\n \"permissions\": [\n \"brandedPortal:view\",\n \"brandedPortal:view\"\n ]\n },\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sint_ea7\": {},\n \"suntf7\": {}\n },\n \"interpolations\": {\n \"ut0\": {},\n \"irure_1\": {},\n \"non_c3_\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:downloadFromMvd\"\n ]\n }\n ],\n \"name\": \"\",\n \"isStandardField\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor376\": {}\n },\n \"interpolations\": {\n \"labore_3_3\": {},\n \"nonec\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"lightbox:assignAsset\"\n ]\n }\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"magna_2_4\": {},\n \"non5a\": {},\n \"veniam5b\": {}\n },\n \"interpolations\": {\n \"occaecat2_1\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"groupId\": \"\",\n \"defaultAction\": \"\",\n \"fields\": [\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex_c1\": {},\n \"nostrud_33b\": {}\n },\n \"interpolations\": {\n \"Loremac\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:shareAsWebGallery\"\n ]\n },\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"pariatur_81a\": {}\n },\n \"interpolations\": {\n \"nisi_d\": {},\n \"nisi_80\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"lightbox:share\"\n ]\n }\n ],\n \"name\": \"\",\n \"isStandardField\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exercitation203\": {},\n \"eaac1\": {},\n \"nostrud_93e\": {}\n },\n \"interpolations\": {\n \"occaecat9a\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsBrandedPortal\"\n ]\n },\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor7\": {},\n \"qui6e9\": {},\n \"esseb\": {}\n },\n \"interpolations\": {\n \"proidenta0\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:createVideoClip\"\n ]\n },\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"doe8\": {},\n \"consectetur_baf\": {},\n \"amet_5\": {}\n },\n \"interpolations\": {\n \"mollit_ef7\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"lightbox:transferOwnership\"\n ]\n }\n ],\n \"name\": \"\",\n \"isStandardField\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"voluptate_963\": {},\n \"deserunt6_c\": {}\n },\n \"interpolations\": {\n \"ad_ca\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sitc98\": {},\n \"nulla_bea\": {}\n },\n \"interpolations\": {\n \"cillumf4\": {},\n \"fugiat8\": {}\n },\n \"permissions\": [\n \"asset:createImageCrop\",\n \"lightbox:editDetails\"\n ]\n }\n ],\n \"dependencies\": [\n {\n \"dependentGroupId\": \"\",\n \"dependsOnFieldId\": \"\",\n \"dependsOnFieldValue\": \"\",\n \"ruleCondition\": \"\",\n \"action\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nondf\": {}\n },\n \"interpolations\": {\n \"nisi_bc\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:downloadFromPortal\"\n ]\n },\n {\n \"dependentGroupId\": \"\",\n \"dependsOnFieldId\": \"\",\n \"dependsOnFieldValue\": \"\",\n \"ruleCondition\": \"\",\n \"action\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolored4c\": {},\n \"eu_11\": {}\n },\n \"interpolations\": {\n \"ea_9c\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"asset:shareAsWebGallery\"\n ]\n }\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"aute_57\": {}\n },\n \"interpolations\": {\n \"occaecatbd\": {}\n },\n \"permissions\": [\n \"brandedPortal:view\",\n \"lightbox:share\"\n ]\n}"},{"id":"11bf877b-0b72-4d50-96f4-31eef1c44eb0","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users/registrationfields"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1f6f39af-f065-4fab-a9be-68b16a34c12d","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users/registrationfields"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7d46112e-70e7-423d-91e4-afa7a4150b8a"},{"name":"Create Custom Fields","id":"35bfc8ca-fb31-4a15-81ea-b4a3885f764e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/registrationfields","description":"

Creates custom fields in the current library.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users","registrationfields"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"e2da9a02-a63f-4183-b727-e71800460805","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/registrationfields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"1da61d26-534e-41ea-a359-4b325248f49c","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/registrationfields"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f7dc3e38-6444-4289-94ee-7bafd33e99b4","name":"The current user is not authorized to view this end-point.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/registrationfields"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f32d3f8d-89ba-45a6-9e7b-3f25e3b11a38","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/registrationfields"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0a4d9bd0-a6fb-41e1-afea-5162d8c0932a","name":"A user with same username already exists.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/users/registrationfields"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"35bfc8ca-fb31-4a15-81ea-b4a3885f764e"},{"name":"Retrieve Current User Permissions","id":"5c55e726-182d-4c52-8a24-152622d7a7e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/current/permissions","description":"

Retrieves the user permission for the current user in the request.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["users","current","permissions"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"37c92670-b82e-43cb-b045-aea91ad1ade7","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/users/current/permissions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"TermsChanged\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod727\": {},\n \"reprehenderitc1\": {}\n },\n \"interpolations\": {\n \"non6\": {},\n \"anim0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"b9568550-c349-49c9-9af3-481f3b2a945a","name":"The user does not have permission to perform this operation.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users/current/permissions"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0d097d9a-56d8-4ed9-9020-eae73e46b77d","name":"The request failed because of a problem on the server.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."}],"url":"https://api.mediavalet.com/users/current/permissions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5c55e726-182d-4c52-8a24-152622d7a7e7"},{"name":"Retrieve Public Custom Fields","id":"4e9f3da7-5fd5-4272-9585-8b8a3f969f7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Accept","value":"application/json"}],"url":"https://api.mediavalet.com/public/:domainName/users/registrationfields","description":"

Retrieves the public custom fields for a given domain name.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":domainName","users","registrationfields"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"69151264-3286-4f17-9b2f-a9c36657bef9","description":{"content":"

(Required) The domain name.

\n","type":"text/plain"},"type":"any","value":"","key":"domainName"}]}},"response":[{"id":"f920d026-a53a-4c96-954a-1f51cabfeb64","name":"Request was successful.","originalRequest":{"method":"GET","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.mediavalet.com/public/:domainName/users/registrationfields","host":["https://api.mediavalet.com"],"path":["public",":domainName","users","registrationfields"],"variable":[{"key":"domainName"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"fieldGroups\": [\n {\n \"groupId\": \"\",\n \"defaultAction\": \"\",\n \"fields\": [\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nonf\": {}\n },\n \"interpolations\": {\n \"magna_cb\": {},\n \"occaecat_d9\": {},\n \"cupidatat_fa5\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:createVideoClip\"\n ]\n },\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"reprehenderit_d9a\": {}\n },\n \"interpolations\": {\n \"esse_99\": {},\n \"esse8e0\": {},\n \"enim_1c2\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"asset:assignCategory\"\n ]\n }\n ],\n \"name\": \"\",\n \"isStandardField\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nulla_bba\": {}\n },\n \"interpolations\": {\n \"Utf3\": {},\n \"quia67\": {},\n \"exercitationaf9\": {},\n \"cupidatatf\": {},\n \"elitd\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"lightbox:share\"\n ]\n },\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"Excepteur_a\": {},\n \"laborum_a5a\": {},\n \"ad_3\": {}\n },\n \"interpolations\": {\n \"ipsum_ef\": {},\n \"nostrud__\": {}\n },\n \"permissions\": [\n \"brandedPortal:view\",\n \"brandedPortal:view\"\n ]\n },\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sint_ea7\": {},\n \"suntf7\": {}\n },\n \"interpolations\": {\n \"ut0\": {},\n \"irure_1\": {},\n \"non_c3_\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:downloadFromMvd\"\n ]\n }\n ],\n \"name\": \"\",\n \"isStandardField\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"tempor376\": {}\n },\n \"interpolations\": {\n \"labore_3_3\": {},\n \"nonec\": {}\n },\n \"permissions\": [\n \"lightbox:viewAsset\",\n \"lightbox:assignAsset\"\n ]\n }\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"magna_2_4\": {},\n \"non5a\": {},\n \"veniam5b\": {}\n },\n \"interpolations\": {\n \"occaecat2_1\": {}\n },\n \"permissions\": [\n \"asset:downloadFromMvd\",\n \"asset:assignCategory\"\n ]\n },\n {\n \"groupId\": \"\",\n \"defaultAction\": \"\",\n \"fields\": [\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"ex_c1\": {},\n \"nostrud_33b\": {}\n },\n \"interpolations\": {\n \"Loremac\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:shareAsWebGallery\"\n ]\n },\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"pariatur_81a\": {}\n },\n \"interpolations\": {\n \"nisi_d\": {},\n \"nisi_80\": {}\n },\n \"permissions\": [\n \"asset:shareAsBrandedPortal\",\n \"lightbox:share\"\n ]\n }\n ],\n \"name\": \"\",\n \"isStandardField\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"exercitation203\": {},\n \"eaac1\": {},\n \"nostrud_93e\": {}\n },\n \"interpolations\": {\n \"occaecat9a\": {}\n },\n \"permissions\": [\n \"asset:shareAsZippedFile\",\n \"asset:shareAsBrandedPortal\"\n ]\n },\n {\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"\",\n \"isRequired\": \"\",\n \"sequence\": \"\",\n \"description\": \"\",\n \"listItems\": [\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolor7\": {},\n \"qui6e9\": {},\n \"esseb\": {}\n },\n \"interpolations\": {\n \"proidenta0\": {}\n },\n \"permissions\": [\n \"user:editEmail\",\n \"asset:createVideoClip\"\n ]\n },\n {\n \"label\": \"\",\n \"value\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"doe8\": {},\n \"consectetur_baf\": {},\n \"amet_5\": {}\n },\n \"interpolations\": {\n \"mollit_ef7\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"lightbox:transferOwnership\"\n ]\n }\n ],\n \"name\": \"\",\n \"isStandardField\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"voluptate_963\": {},\n \"deserunt6_c\": {}\n },\n \"interpolations\": {\n \"ad_ca\": {}\n },\n \"permissions\": [\n \"lightbox:transferOwnership\",\n \"asset:shareAsBrandedPortal\"\n ]\n }\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"sitc98\": {},\n \"nulla_bea\": {}\n },\n \"interpolations\": {\n \"cillumf4\": {},\n \"fugiat8\": {}\n },\n \"permissions\": [\n \"asset:createImageCrop\",\n \"lightbox:editDetails\"\n ]\n }\n ],\n \"dependencies\": [\n {\n \"dependentGroupId\": \"\",\n \"dependsOnFieldId\": \"\",\n \"dependsOnFieldValue\": \"\",\n \"ruleCondition\": \"\",\n \"action\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"nondf\": {}\n },\n \"interpolations\": {\n \"nisi_bc\": {}\n },\n \"permissions\": [\n \"asset:createVideoClip\",\n \"asset:downloadFromPortal\"\n ]\n },\n {\n \"dependentGroupId\": \"\",\n \"dependsOnFieldId\": \"\",\n \"dependsOnFieldValue\": \"\",\n \"ruleCondition\": \"\",\n \"action\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"dolored4c\": {},\n \"eu_11\": {}\n },\n \"interpolations\": {\n \"ea_9c\": {}\n },\n \"permissions\": [\n \"lightbox:editDetails\",\n \"asset:shareAsWebGallery\"\n ]\n }\n ],\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"aute_57\": {}\n },\n \"interpolations\": {\n \"occaecatbd\": {}\n },\n \"permissions\": [\n \"brandedPortal:view\",\n \"lightbox:share\"\n ]\n}"}],"_postman_id":"4e9f3da7-5fd5-4272-9585-8b8a3f969f7b"},{"name":"Create Custom Fields","id":"167dba75-19fb-4d71-9886-a60234be2a25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/:domainName/users/registrationfields","description":"

Creates custom fields for a given domain name.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":domainName","users","registrationfields"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"089b5ccf-837b-48cb-a779-d54828ab73ef","description":{"content":"

(Required) The domain name.

\n","type":"text/plain"},"type":"any","value":"","key":"domainName"}]}},"response":[{"id":"14bb583f-b22e-4f5f-9d78-78e8f54dfb29","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:domainName/users/registrationfields","host":["https://api.mediavalet.com"],"path":["public",":domainName","users","registrationfields"],"variable":[{"key":"domainName"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"183159e1-2d6e-4019-945b-5dbed44b89b7","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:domainName/users/registrationfields","host":["https://api.mediavalet.com"],"path":["public",":domainName","users","registrationfields"],"variable":[{"key":"domainName"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"192eb1ab-4095-4ee9-8849-c4275b91adaf","name":"A user with same username already exists.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:domainName/users/registrationfields","host":["https://api.mediavalet.com"],"path":["public",":domainName","users","registrationfields"],"variable":[{"key":"domainName"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"21f9dd99-dcf3-4e4d-bd2c-755431015992","name":"Too many requests from the same IP to register an user to the same library, max of 15 requester per minute.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"TermsConditionsAcceptanceStatus\": \"\",\n \"Fields\": [\n {\n \"fieldId\": \"\",\n \"value\": {}\n },\n {\n \"fieldId\": \"\",\n \"value\": {}\n }\n ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:domainName/users/registrationfields","host":["https://api.mediavalet.com"],"path":["public",":domainName","users","registrationfields"],"variable":[{"key":"domainName"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"167dba75-19fb-4d71-9886-a60234be2a25"},{"name":"Create User","id":"c1df710a-0773-4239-9841-cbe56b43e44b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/:domainName/users","description":"

Creates a a new user for a given domain name.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public",":domainName","users"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"b44d4864-2d34-48df-8f1f-9b68d94b0670","description":{"content":"

(Required) The domain name.

\n","type":"text/plain"},"type":"any","value":"","key":"domainName"}]}},"response":[{"id":"f87e2ae1-6190-4ce4-b11b-4fe2773419bd","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:domainName/users","host":["https://api.mediavalet.com"],"path":["public",":domainName","users"],"variable":[{"key":"domainName"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"\",\n \"userName\": \"\",\n \"address\": \"\",\n \"orgUnitId\": \"\",\n \"applicationName\": \"\",\n \"defaultGroup\": \"\",\n \"userDomain\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"department\": \"\",\n \"position\": \"\",\n \"title\": \"\",\n \"officeNumber\": \"\",\n \"cellularNumber\": \"\",\n \"faxNumber\": \"\",\n \"emailAddress\": \"\",\n \"comment\": \"\",\n \"defaultSkin\": \"\",\n \"additionalMessage\": \"\",\n \"adminNotes\": \"\",\n \"lastActiveAt\": \"\",\n \"lastLockedOutAt\": \"\",\n \"lastLoginAt\": \"\",\n \"createdAt\": \"\",\n \"expiresAt\": \"\",\n \"termsandconditionsacceptedat\": \"\",\n \"termsConditionsAcceptanceStatus\": \"TermsChanged\",\n \"website\": \"\",\n \"alertsEnabled\": \"\",\n \"newUserNotification\": \"\",\n \"password\": \"\",\n \"organizationName\": \"\",\n \"isLockedOut\": \"\",\n \"isSuspended\": \"\",\n \"isApproved\": \"\",\n \"userType\": \"AzureActiveDirectory\",\n \"isExternalUser\": \"\",\n \"roleId\": \"\",\n \"_links\": {\n \"self\": \"\",\n \"functions\": [\n \"\",\n \"\"\n ]\n },\n \"translationKeys\": {\n \"eiusmod727\": {},\n \"reprehenderitc1\": {}\n },\n \"interpolations\": {\n \"non6\": {},\n \"anim0\": {}\n },\n \"permissions\": [\n \"asset:assignCategory\",\n \"lightbox:editDetails\"\n ]\n}"},{"id":"76a8ec55-5ca8-417f-a1fe-27a2c61da755","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:domainName/users","host":["https://api.mediavalet.com"],"path":["public",":domainName","users"],"variable":[{"key":"domainName"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a056b2ca-65da-4afe-a148-2d1ab108897b","name":"A user with same username already exists.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"AdditionalMessage\": \"\",\n \"Address\": \"\",\n \"AdminNotes\": \"\",\n \"CellularNumber\": \"\",\n \"Comment\": \"\",\n \"DefaultGroup\": \"\",\n \"Department\": \"\",\n \"EmailAddress\": \"\",\n \"ExpiresAt\": \"\",\n \"FaxNumber\": \"\",\n \"FirstName\": \"\",\n \"IsApproved\": \"\",\n \"LastName\": \"\",\n \"OfficeNumber\": \"\",\n \"PasswordInformation\": {\n \"Password\": \"\",\n \"PasswordSalt\": \"\",\n \"RecoveryQuestion\": \"\",\n \"RecoveryAnswer\": \"\",\n \"FailedLoginAttemptWindowsStart\": \"\",\n \"FailedAnswerAttemptWindowsStart\": \"\",\n \"LastChangedAt\": \"\",\n \"PasswordStatus\": \"Unknown\",\n \"PasswordFormat\": \"Clear\",\n \"ConsecutiveFailedLoginAttempts\": \"\",\n \"FailedLoginAttemptWindowStart\": \"\",\n \"ConsecutiveFailedAnswerAttempts\": \"\",\n \"FailedAnswerAttemptsWindowStart\": \"\",\n \"MustChangePassword\": \"\"\n },\n \"Position\": \"\",\n \"Title\": \"\",\n \"UserName\": \"\",\n \"Website\": \"\",\n \"AlertsEnabled\": \"\",\n \"NewUserNotification\": \"\",\n \"OrganizationName\": \"\",\n \"TermsAndConditionsAcceptedAt\": \"\",\n \"TermsAndConditionsAccepted\": \"\",\n \"TermsConditionsAcceptanceStatus\": \"Accepted\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/:domainName/users","host":["https://api.mediavalet.com"],"path":["public",":domainName","users"],"variable":[{"key":"domainName"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c1df710a-0773-4239-9841-cbe56b43e44b"},{"name":"Recover Password","id":"50bb1f28-2a50-43c0-a1ce-8990c5fd290e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/users/recoverpassword","description":"

Recovers the user password for a given username.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","users","recoverpassword"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[{"id":"4d427b87-7fd2-4600-bf5a-22ecc8de2cbe","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/users/recoverpassword"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"c51426b5-ed2f-427d-ab35-ef36a3cb6776","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/users/recoverpassword"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b506b74e-b7b7-42a5-8787-729d75b7d9f1","name":"The user was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/users/recoverpassword"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"71d74057-5618-46ff-b494-b8d7a88c2ef8","name":"Pre condition failed.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/users/recoverpassword"},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"50bb1f28-2a50-43c0-a1ce-8990c5fd290e"},{"name":"Recover Password","id":"0bc3bad0-2c5f-4c35-a5d9-5999810be112","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"

(Required) The requested API version

\n"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"

(Required) The subscription key of your api plan.

\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.mediavalet.com/public/users/recoverpassword/:token","description":"

Defines a new user password.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["public","users","recoverpassword",":token"],"host":["https://api.mediavalet.com"],"query":[],"variable":[{"id":"f0d07191-e9ad-4bcc-962f-7f01ee6c083c","description":{"content":"

(Required) The token.

\n","type":"text/plain"},"type":"any","value":"","key":"token"}]}},"response":[{"id":"1a23d0a2-f52d-425e-b0a8-6591b91a5e42","name":"Request was successful.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/users/recoverpassword/:token","host":["https://api.mediavalet.com"],"path":["public","users","recoverpassword",":token"],"variable":[{"key":"token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"945e6d37-cc8c-48fe-9c34-af9c5c6dfd14","name":"There was a problem with the data sent with the request.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/users/recoverpassword/:token","host":["https://api.mediavalet.com"],"path":["public","users","recoverpassword",":token"],"variable":[{"key":"token"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"70344ed4-d9b8-4e81-8db9-fa440360cf64","name":"The user was not found.","originalRequest":{"method":"POST","header":[{"key":"x-mv-api-version","value":"1.2","description":"(Required) The requested API version"},{"key":"Ocp-Apim-Subscription-Key","value":"","description":"(Required) The subscription key of your api plan."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.mediavalet.com/public/users/recoverpassword/:token","host":["https://api.mediavalet.com"],"path":["public","users","recoverpassword",":token"],"variable":[{"key":"token"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0bc3bad0-2c5f-4c35-a5d9-5999810be112"}],"id":"a075e87d-b4ea-4cdb-aab7-0ac035726dff","_postman_id":"a075e87d-b4ea-4cdb-aab7-0ac035726dff","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}}],"id":"8735406f-d476-47b3-a0e4-e594b1d4859f","_postman_id":"8735406f-d476-47b3-a0e4-e594b1d4859f","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Webhook API Endpoints","item":[{"name":"Create Webhook Subscription","id":"ef767132-bdcb-4d82-90f5-526f5694cec4","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{ \r\n \"Events\": [\r\n {\r\n \"Name\": \"{Event Name}\"\r\n }\r\n ],\r\n \"Type\": \"webhook\",\r\n \"Data\": {\r\n \"webhook\": \"{Webhook URL}\"\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/skyhook/subscriptions","description":"

Create a Webhook subscription.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","subscriptions"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef767132-bdcb-4d82-90f5-526f5694cec4"},{"name":"Create EventGrid Subscription","id":"e9caf331-e10b-4118-8dae-16efc6f99786","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{ \r\n \"Events\": [\r\n {\r\n \"Name\": \"{Event Name}\"\r\n }\r\n ],\r\n \"type\": \"eventgrid\",\r\n \"Data\": {\r\n \"eventGridTopicEndpointUrl\": \"{Event Grid Endpoint}\",\r\n \"eventGridKey\": \"{Event Grid API Key}\"\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/skyhook/subscriptions","description":"

Create a EventGrid Subscription.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","subscriptions"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9caf331-e10b-4118-8dae-16efc6f99786"},{"name":"Update Webhook Subscription","id":"917f5ade-f5b1-4585-a867-8378b60c6276","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{ \r\n \"Events\": [\r\n {\r\n \"Name\": \"{Event Type}\"\r\n }\r\n ],\r\n \"Type\": \"webhook\",\r\n \"Data\": {\r\n \"webhook\": \"{Webhook URL}\"\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/skyhook/subscriptions/{{subscriptionID}}","description":"

Update Webhook Subscription.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","subscriptions","{{subscriptionID}}"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"917f5ade-f5b1-4585-a867-8378b60c6276"},{"name":"Update EventGrid Subscription","id":"c2dc225e-0384-48bd-9d20-677d4d92f87f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"body":{"mode":"raw","raw":"{ \r\n \"Events\": [\r\n {\r\n \"Name\": \"{Event Name}\"\r\n }\r\n ],\r\n \"type\": \"eventgrid\",\r\n \"Data\": {\r\n \"eventGridTopicEndpointUrl\": \"{Event Grid Endpoint}\",\r\n \"eventGridKey\": \"{Event Grid API Key}\"\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediavalet.com/skyhook/subscriptions/{{subscriptionID}}","description":"

Update EventGrid subscription.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","subscriptions","{{subscriptionID}}"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c2dc225e-0384-48bd-9d20-677d4d92f87f"},{"name":"Get Subscription","id":"fdbf96d7-f17b-46ac-afc6-5a924046eefa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"url":"https://api.mediavalet.com/skyhook/subscriptions/list","description":"

Return all Events that you are subscribed to.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","subscriptions","list"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fdbf96d7-f17b-46ac-afc6-5a924046eefa"},{"name":"Delete Subscription","id":"210457d3-5975-4046-8b92-86fc23ca2f2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"url":"https://api.mediavalet.com/skyhook/subscriptions/{{subscriptionID}}","description":"

Delete a Subscription.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","subscriptions","{{subscriptionID}}"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"210457d3-5975-4046-8b92-86fc23ca2f2b"},{"name":"Get Events Types","id":"ceb26282-a823-45cf-9dc4-a55024e71a44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Ocp-Apim-Subscription-Key","value":"","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer QXJlbid0IHlvdSB2ZXJ5IG5vc2V5IDpQ","type":"text"}],"url":"https://api.mediavalet.com/skyhook/events","description":"

Return all Events Types that you can Subscribe to. Take note of the Event Name you will need to create a subscription.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}},"urlObject":{"path":["skyhook","events"],"host":["https://api.mediavalet.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ceb26282-a823-45cf-9dc4-a55024e71a44"}],"id":"50b5b69b-2a59-47a4-bb86-96f96829c716","event":[{"listen":"prerequest","script":{"id":"563e84a4-69c2-4775-adc7-96742641d2da","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"77a1bdcd-aeab-4eca-ae66-5f6627d29fbc","type":"text/javascript","exec":[""]}}],"_postman_id":"50b5b69b-2a59-47a4-bb86-96f96829c716","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}},{"name":"Packaged Business Capabilities (PBCs)","item":[{"name":"Asset Picker","item":[],"id":"d5762f6e-200e-4bef-aa88-125f2c0a13c9","description":"

What is the Asset Picker?

\n

The Asset Picker is Packaged Business Capability that lets users access the MediaValet DAM directly from within another application. It appears as an embedded, resizable, and mobile‑ready window that allows users to search, browse, and insert MediaValet assets without leaving the tool they’re working in.

\n

The Asset Picker is a reusable component that any customer or partner with a MediaValet developer account can integrate into their application using a simple iframe.

\n\"Asset\n\n

How do I enable the Asset Picker?

\n

Email support@mediavalet.com the following information:

\n
    \n
  • Portal URL (if applicable)

    \n
  • \n
  • Domain URL that will have the Asset Picker embedded in

    \n
  • \n
  • A brief description of how you will be using the Asset Picker in your system

    \n
  • \n
\n

Local development

\n

You can use the Asset Picker locally at http://localhost:5174 for development and testing.

\n

This allows you to build and validate your integration before configuring a whitelabeled domain in the steps above.

\n

How do I add the Asset Picker to my application?

\n

Adding asset picker iframe

\n
Step by step
\n
    \n
  1. Add an iframe with the src attribute set to the asset picker URL https://assetpicker.mediavalet.com

    \n
  2. \n
  3. Add an message event listener to the page (code example provided below) - Message general documentation can be found here

    \n
  4. \n
  5. Validate origin for security

    \n
  6. \n
  7. Use the event data to get the selected asset

    \n
  8. \n
\n
Code example
\n

Every message posted by asset picker will always have the same format

\n
type EventData<T> = { \n  type: string; \n  payload: T; \n};\n\n
\n

Event for inserted/selected assets

\n
window.addEventListener(\"message\", (event) => { \n  const mediavaletURL = \"https://assetpicker.mediavalet.com\"; \n  // 1) validate origin for security \n  if (event.origin !== mediavaletURL) return; \n  // 2) get event type and payload \n  const { type, payload } = event.data; \n  if (type === \"insertedAssets\") { \n    // `assets` is an array of selected asset objects with their selected sizes.\n    // Each item in `assets` has the structure:\n    // { asset: IAsset, \n    // size: \"original\" | \"xl\" | \"lg\" | \"md\" | \"sm\", \n    // insertionType: \"assetLink\" | \"assetFile\" | \"categoryLink\" | \"cdnLink\" \n    // \"assetLink\" | \"categoryLink\" | \"cdnLink\": <link> } // Based on the `insertionType`, one of the following will also be included:\n    const { assets, meta } = payload; \n    // `meta` contains additional context about the selection\n    // {\n    //   categoryId: string;      // ID of the selected category\n    //   categoryName: string;    // Display name of the selected category\n    //   categoryLink: string;    // URL link to the selected category\n    //   portalInfo: {\n    //     id: string;            // Unique identifier for the portal\n    //     name: string;          // Display name of the portal\n    //     url: string;           // URL to access the portal\n    //   }\n    // }\n    // do anything with assets and meta\n  } \n});\n\n
\n

Allowing only specific types of assets:

\n

When adding the asset picker to the iframe, if the query param allowedAssetTypes is passed, it is possible to disable asset types that are not included in this parameter.

\n

This parameter can be used in three ways:

\n
    \n
  • If not passed, all asset types will be available/not disabled;

    \n
  • \n
  • If the value is All, all asset types will be available/not disabled;

    \n
  • \n
  • Finally, the value can be a comma-separated list, without any spaces, with the types of assets, all assets that its type is not included, will be disabled

    \n
      \n
    • Possible values: Image | Audio | Video | File | Unknown
    • \n
    \n
  • \n
\n

Important: These values are case sensitive

\n

Controlling Available Insertion Options:

\n
Behavior:
\n
    \n
  • If not passed or left empty:
    Only the default option—inserting the asset file (assetFile)—will be available.

    \n
  • \n
  • If the value is all:
    All feature options will be available.

    \n
  • \n
  • If a comma-separated list is provided:
    Only the features included in the list will be enabled. Others will be disabled.

    \n
  • \n
\n
Possible values (case-sensitive):
\n
    \n
  • assetLink – Insert as a direct asset link.

    \n
  • \n
  • assetFile – Insert the actual asset file.

    \n
  • \n
  • cdnLink – Insert a CDN (Content Delivery Network) link.

    \n
  • \n
  • categoryLink – Insert a link to the selected category.

    \n
  • \n
  • all – Enables all insertion options.

    \n
  • \n
\n

Example:

\n
\n

allowedFeatures=assetLink,cdnLink

\n
\n

Inserting Multiple Assets at Once

\n

Inserting multiple assets is only supported when the user selects the “Insert as asset file” option (assetFile).

\n

At the integration level, the callback will still return an array of selected assets along with the size chosen by the user, regardless of how many assets were inserted.

\n

For all other insertion types (assetLink, cdnLink, categoryLink), only single asset insertion is allowed.

\n

How to Switch Between Popup or Redirect for User Authentication

\n

Sometimes, certain integrations require authentication to occur using a popup, especially when they are not running in a browser but within specific software environments.

\n

For scenarios where a popup is not necessary, the Asset Picker allows configuration of this behavior via the URL.

\n

The redirectType query parameter can be provided with two possible values:

\n
    \n
  • popup: When the user initiates a login or logout, a popup window will be opened.

    \n
  • \n
  • redirect: When the user initiates a login or logout, the iframe will be redirected to the authentication URL instead.

    \n
  • \n
\n

Important: These values are case sensitive

\n","_postman_id":"d5762f6e-200e-4bef-aa88-125f2c0a13c9","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}}],"id":"09fa7a47-dfe2-4acd-ab80-e4bd5b4312a6","_postman_id":"09fa7a47-dfe2-4acd-ab80-e4bd5b4312a6","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]},"isInherited":true,"source":{"_postman_id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","id":"55cc404f-b818-43ba-87c2-1a07f2a47bd9","name":"MediaValet API","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":""},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"scope","value":"openid api"},{"key":"clientSecret","value":""},{"key":"accessTokenUrl","value":""},{"key":"authUrl","value":""},{"key":"challengeAlgorithm","value":""},{"key":"state","value":""},{"key":"redirect_uri","value":""},{"key":"client_authentication","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"70950467-e1ab-477c-a8df-323acba65000","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"56c9d05c-303c-4e3a-974f-50edb1f30488","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://api.mediavalet.com"}]}