{"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.
\nWatch the video below for a quick tour of our API documentation.
\n\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.
\nShould 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.
\nThe base URL for all authentication requests is https://login.mediavalet.com
\nYou'll require client_id, client_secret, and redirect_uri values that are set up by our API support team.
If you don't have them please contact our API support team support@mediavalet.com.
\n1 - Make the initial authorization request to start the flow:
\nGET 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\n2 - 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.
\n3 - Our identity service will redirect the user's browser to the provided redirect_uri with the code as a query parameter:
\nGET https://<your-redirect-url>\n?client_id=<client-id>\n&code=0357a6f78e400d4039eacfdf3007d5b8d6984c9d92a0175fc5ed6f8cc1cec472\n&scope=openid api\n&state=state-296bc9a0\n\n4 - 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.
\nRequest sample:
\nPOST 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\nResponse sample:
\n{\n \"id_token\":\"ID_TOKEN_VALUE\",\n \"access_token\":\"ACCESS_TOKEN_VALUE\",\n \"expires_in\":3600,\n \"token_type\":\"Bearer\"\n}\n\n5 - 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:
\nAuthorization: bearer ACCESS_TOKEN_VALUE\n\nThe 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.
\nThe 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.
\nThe username and password are the credentials you use to login into your DAM portal. e.g xxxx.mediavalet.com.
Request sample:
\nPOST 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\nResponse sample:
\n{\n \"access_token\":\"ACCESS_TOKEN_VALUE\",\n \"expires_in\":3600,\n \"token_type\":\"Bearer\",\n \"scope\":\"api\"\n}\n\nA 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.
\nTo refresh your access token as well as an ID token, you send a token request with a grant_type of refresh_token.
\nRequest Sample:
\nPOST /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\nResponse 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\nThis 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.
\nRequest Parameters:
\nThis 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).
\nRequest Parameters:
\nResponse Properties:
\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 \"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\nLearn how to specify which REST API version to use whenever you make a request to the REST API.
\nAny breaking changes will be released in a new API version. Breaking changes are changes that can potentially break an integration.
\nRemoving Endpoints: Deleting or deprecating existing API endpoints that clients depend on.
\nRemoval/Renaming of Fields: Removing or renaming existing fields returned by the API, potentially causing compatibility issues for existing clients.
\nModifying Request/Response Semantics: Changing the meaning or behavior of API requests or responses.
\nRemoving or Renaming Parameters: Eliminating or renaming parameters that clients use in their requests.
\nAuthentication Changes: Modifying authentication mechanisms or requirements.
\nAddition of new endpoints, fields, or optional parameters.
\nAddition of new query parameters or header values.
\nChanges in hostname returned in URLs.
\nBug fixes.
\nPerformance improvements.
\nYou should use the x-mv-api-version header to specify an API version. For example:
curl --request GET 'https://api.mediavalet.com/attributes' --header 'x-mv-api-version: 1.2'
The response includes the ApiVersion for you to confirm the version of the data received.
{\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\nRequests without the x-mv-api-version header will default to use the 1.0 version.
The following REST API versions are currently supported:
\n1.2
\n1.1
\n1.0 (default)
\nBefore 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.
- AssetDto: Consolidated permissions structure to match other resources - now returns an array of Permissions
- 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- GET /attributes/: Includes attributes of type Status.
- GET /attributes/{attributeId}: Retrieves attributes of type Status.
- GET /attributes/attributeDataType: Returns new data type Status.
- PATCH /assets/{assetId}: Handles the new Status type attribute.
- 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.
- 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.
- 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.
- streamingManifest in AssetDto: URI for the streaming manifest file.
- fullStreamAvailable in AssetDto: Used to determine the availability of different stream qualities
- 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.
\nThe count element specifies the number of records to be returned for the search.
\nThe default value is 50.
\nTo set the count, include count={long} to the query string.
\nhttps://api.mediavalet.com/{entity}?filters={search}&count=25
This feature has not been implemented yet.
\nThe 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.
\nIf 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.
\nhttps://api.mediavalet.com/entity?exclude=fieldWithLotsOfData
For information on searching, see the search and filters document
\nThis feature has not been implemented yet.
\nThe 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.
\nIf 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.
\nhttps://api.mediavalet.com/entity?include=id,FieldOne
This feature has not been implemented yet.
\nThe max-length element allows for truncation of fields within the response. The syntax will be max-length=field:value.
\nIt is valid to have more than one field truncated per response. Each field should be separated by a comma.
\nWhen a field is not found, a warning will be placed in the warnings section, and the truncation for that field will be ignored.
\nhttps://api.mediavalet.com/entity?max-length=FirstField:256,OtherField:25
Adding an offset entity to the querystring skips the specified number of records in the result set.
\nThe default value is 0.
\nTo set the offset, include offset={long value} to the query string.
\nhttps://api.mediavalet.com/{entity}?q={search}&offset=10
A full-text search can be performed to return all the assets that contain particular text in categories, keywords, file names, comments and descriptions.
\nGET /assets?search=pyramid\nwill return all assets that contain pyramid in one of the fields listed above.
AND, OR and NOT are all supported boolean operators.
GET /assets?search=car+plane\nwill return any assets that contain both car and plane, i.e. AND is implicit.
If that's not the behaviour you would like, you can explicitly use boolean operators:
\nGET /assets?search=car+OR+plane\nwill return assets with either car or plane
GET /assets?search=car+NOT+plane\nwill return assets with car but not plane
For an exact match, place your search in-between \" \"
\nGET /assets?search=\"good night moon\"\nwill return assets with good night moon
The wildcard search is supported by adding * before or after the word you are looking for:
\nGET /assets?search=flag*\nwill return all results like flags, flagging, flagger, Flaggington, Flagstaff, etc.
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:
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.
The following equality operators are available to use within the filter:
\nThe simplest query is one field/value pair:
\nGET /assets?filters=AverageRating+eq+4 will return all available assets that have an average rating of 4
There are two ways to join queries together: AND or OR. It is possible to string multiple operations together:
\nGET /assets?filters=AverageRating+GE+3+AND+AverageRating+LE+5 will return all assets that have a rating >= 3 and <= 5
Our API also understands brackets to change the order of operations:
\nGET /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
It is valid to have more than one set of brackets within the request, as long as both opening and closing brackets are present:
\nfilters=((A OR B) AND C ) OR D
Field names are not case sensitive. Values are not case sensitive.
\nThe following Filters are currently supported:
\nSearching in a specific category or lightbox is possible by using the ANY operator within a ?containerFilter
Assuming that 91de5383-5144-4b50-8745-bdeedcde4e93 is the category id you want to filter by:
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.
Assuming that you want to search in the specific category with the id 91de5383-5144-4b50-8745-bdeedcde4e93, including all its sub-categories:
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.
Assuming that f2d39a31-15e3-41f8-abe2-cd255d7f2253 is the lightbox id you want to filter by:
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.
Will return the result of faceting your library by some predetermined set of asset fields.
\nAll existing library values for the fields are retrieved together with the number of assets for each field value.
\nCurrently, 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.
\nIn 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{\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 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.
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.
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.
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.
\nThe 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.
\nThe request must have a content-type of application/json-patch+json and a Http Action of PATCH.
\nThe 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]\nIf \"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.
\nIf 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","_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.
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📌 Example in C#: MediaValet Large File Upload Example with C#
📖 Microsoft's Official SDK Documentation: Azure Storage Blobs SDK for .NET
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\", \"Setup the filename of the file that you will upload in the Upload Asset step.
\nExample:
\npostman.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.
\nRequest
\n{\n \"filename\": \"MyImage.jpg\"\n}\nResponse
\nThe response from the POST consists of the Asset Identifier, the temporary file name, and the upload url.
\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":"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.
\nThere are a few key points to this upload.
\nThis 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.
\nNote: 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":"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":"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.
\nPATCH\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:
\nThe 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.
\nPATCH will not work if the asset is in the Uploading state.
\nThe fields that are accepted for PATCH are:
\nThe 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.
\nData 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.
\nPOST 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.
\nUpload the file using the SAS URL.
\nPUT the upload to the Assets resource.
\nAssign asset to the category.
\nPATCH 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.
\nSet the asset id of the asset you want to checkout (create a new version).
\nExample
\npostman.setEnvironmentVariable(\"asset-id\", \"82d57c66-6da6-4f31-a7c3-eca0ea09a86a\");\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":"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":"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":"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":"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.
\nThere are a few key points to this upload.
\nFinalize the upload by setting the asset's metadata.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":"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":"Search assets.
\n","_postman_id":"9db87e04-4c34-4f14-9c53-ad40928f3c3e","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":"(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":"(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":"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":"(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.
\nFollowing 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":"(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.
\nSize Type property can be: XLarge, Widescreen, Fullscreen, Large, Medium, Small, Thumbnail, Original, Custom.
\nOnly for Custom Size Type property, Width and Height needs to be included.
\nValue for format property can be: GIF, JPG, PDF, PNG, TIFF.
\nNote 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":"(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.
\nSize Type property can be: Widescreen360p, Widescreen480p, Widescreen720p, Widescreen1080p, Original, Custom.
\nOnly for Custom Size Type property, Width and Height needs to be included.
\nValue for format property can be: AVI, FLV, MKV, MOV, MPEG, MP4, WMV.
\nNote 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":"(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.
\nSize Type property is not available for Audio assets.
\nValue for format property can be: MP3, MP4, MWA.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":"(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.
\nSize Type property is not available for Document assets.
\nValue for format property can be: PDF.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":""},{"key":"grant_type","value":"(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":"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":"(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":"(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":"(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":"(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":"