Taxonomische API-methoden taxonomic-api-methods
Methoden waarmee u de algemene taxonomie van de Audience Manager kunt weergeven. Dit facultatieve classificatieschema organiseert de eigenschappen in industriestandaard categorieën.
categoryId
met een standaard methode maken of bijwerken.Een specifieke taxonomie retourneren return-specific-taxonomy
A GET
methode die details over de gespecificeerde taxonomische categorie terugkeert.
Verzoek
GET https://api.demdex.com/v1/taxonomies/0/
<categoryId>
Antwoord
Resultaten van een succesvolle reactie 200 OK
en de categorie voor de opgegeven id. Een mislukte aanvraag wordt geretourneerd 404 No Content
als de id niet bestaat.
{
"crUID": 158,
"name": "Arts & Entertainment",
"upUID": 158,
"description": "Arts & Entertainment",
"categoryID": 1,
"parentCategoryID": 0
}
Alle taxonomische categorieën retourneren return-all-taxonomy-categories
A GET
methode die een lijst van de top-level categorieën in een serie terugkeert.
Verzoek
GET https://api.demdex.com/v1/taxonomies/0/
Antwoord
Afgekort voor bondigheid.
[
{
"crUID": 158,
"name": "Arts & Entertainment",
"upUID": 158,
"description": "Arts & Entertainment",
"categoryID": 1,
"parentCategoryID": 0
},
{
"crUID": 158,
"name": "Automotive",
"upUID": 158,
"description": "Automotive",
"categoryID": 2,
"parentCategoryID": 0
},
{
"crUID": 158,
"name": "Business",
"upUID": 158,
"description": "Business",
"categoryID": 3,
"parentCategoryID": 0
}
]
Taxonomische subcategorieën retourneren return-taxonomy-sub-categories
A GET
methode die subcategorieën voor de opgegeven bovenliggende categorie in een array retourneert.
Verzoek
GET https://api.demdex.com/v1/taxonomies/0/
<categoryId>
/childCategories/
Antwoord
Resultaten van een succesvolle reactie 200 OK
en de categorie voor de opgegeven id. Een mislukte aanvraag wordt geretourneerd 404 No Content
als de id niet bestaat. Afgekort voor bondigheid.
[
{
"crUID": 158,
"name": "Books & Literature",
"upUID": 158,
"description": "Books & Literature",
"categoryID": 25,
"parentCategoryID": 1
},
{
"crUID": 158,
"name": "Celebrity Fan/Gossip",
"upUID": 158,
"description": "Celebrity Fan/Gossip",
"categoryID": 49,
"parentCategoryID": 1
},
{
"crUID": 158,
"name": "Fine Art",
"upUID": 158,
"description": "Fine Art",
"categoryID": 72,
"parentCategoryID": 1
}
]