Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

See Catalogs

Example

GET https://club-wed.wedia-group.com/api/rest/dam?headers=false

Get the service DAM catalog.

Code examples

The following examples are given with a Basic authentication with bogus credentials.

HTTP

Code Block
GET /api/rest/dam?headers=false HTTP/1.1
Authorization: Basic ZGVtbzpkZW1vcHdk
Host: club-wed.wedia-group.com

cURL

Code Block
curl --request GET 
  --url 'https://club-wed.wedia-group.com/api/rest/dam?headers=false'
  --header 'Authorization: Basic ZGVtbzpkZW1vcHdk'

JavaScript/fetch

Code Block
fetch("https://club-wed.wedia-group.com/api/rest/dam?headers=false", {
  "method": "GET",
  "headers": {
    "Authorization": "Basic ZGVtbzpkZW1vcHdk"
  }
})
.then(response => {
  console.log(response);
})
.catch(err => {
  console.error(err);
});

JavaScript/XMLHttpRequest

Code Block
const data = null;

const xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener("readystatechange", function () {
  if (this.readyState === this.DONE) {
    console.log(this.responseText);
  }
});

xhr.open("GET", "https://club-wed.wedia-group.com/api/rest/dam?headers=false");
xhr.setRequestHeader("Authorization", "Basic ZGVtbzpkZW1vcHdk");

xhr.send(data);

Java/Unirest (Basic)

Code Block
HttpResponse<String> response = Unirest.get("https://club-wed.wedia-group.com/api/rest/dam")
  .queryString("headers", false)
  .header("Authorization", "Basic ZGVtbzpkZW1vcHdk")
  .asString();

Python/Request

Code Block
import requests

url = "https://club-wed.wedia-group.com/api/rest/dam"

querystring = {"headers":"false"}

payload = ""
headers = {
    "Authorization": "Basic ZGVtbzpkZW1vcHdk"
}

response = requests.request("GET", url, data=payload, headers=headers, params=querystring)

print(response.text)

Response sample

Since the response may vary depending on the state of the data, the query parameters, the resource configuration, and the data model, a response is presented here that may be somewhat different from what you will get in your implementation. Not all sections are documented here for the same reasons. The debug sections in particular are not documented on this page.

Code Block
{
	"response": {
		"data": [
			"activated",
			"adeoproduct",
			"aicelebrity",
			"aicolor",
			"ailandmark",
			"allproperties",
			"asset",
			"assetauthor",
			"assetchannel",
			"assetcolorspace",
			"assetcoverage",
			"assetformat",
			"assetgeography",
			"assetiaconcept",
			"assetkeyword",
			"assetnature",
			"assetrighttype",
			"assetseason",
			"assettest",
			"assetvisibility",
			"brandcenter",
			"color",
			"cspsource",
			"externalvideo",
			"folder",
			"frontmainsearch",
			"lang",
			"legacy",
			"mediagroup",
			"micthesaurus",
			"organization",
			"pimasset",
			"pimassettype",
			"pkgroletemplate",
			"product",
			"productcategory",
			"resort",
			"reversesearch",
			"reversesearchdomain",
			"reversesearchmatch",
			"reversesearchpage",
			"role",
			"user",
			"userregistration",
			"usertype",
			"videoratio",
			"wkfasset",
			"wkfsys",
			"wkfuser",
			"workflow"
		],
		"total": 50,
		"count": 50
	},
	"version": "1.0",
	"apiversion": "2.4"
}

Response

This documentation describes all the exposable properties. The documentation of the API (ReDoc or SwaggerUI) of the usage environment is more specific to the environment and will detail the information actually exposed on it.

JSON Path

The path to the property

Type*

Type of information

JSON Type

The type of the value

Description

The description of the value

Presence

When this property is exposed

Comment

$

STRUCT

Object

The response for end point invocation (root)

Always

 

$.response

STRUCT

Object

Data specific to the call for service response

Always

 

$.version

TECH

String

Version of the API end point

Always

$.apiversion

TECH

String

Version of the API

Always

$.response.total

AGPG

Number

The total number of resource types corresponding to the request

Always

$.response.count

AGPG

Number

The number of resource names types in this response

Always

$.response.data

STRUCT

Array of strings

List of resource type names

Always

*The property type classifies properties into 6 types:

...