GET api/v1/web/keywords/{slug}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
slug | string |
Required |
Body Parameters
None.
Response Information
Resource Description
KeywordName | Description | Type | Additional information |
---|---|---|---|
id | globally unique identifier |
None. |
|
name | string |
None. |
|
text | string |
None. |
|
meta_title | string |
None. |
|
meta_description | string |
None. |
|
url | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": "5b54703e-ce9d-4c86-8796-c713099ae02e", "name": "sample string 2", "text": "sample string 3", "meta_title": "sample string 4", "meta_description": "sample string 5", "url": "sample string 6" }
application/xml, text/xml
Sample:
<Keyword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IO.Swagger.Models"> <id>5b54703e-ce9d-4c86-8796-c713099ae02e</id> <meta_description>sample string 5</meta_description> <meta_title>sample string 4</meta_title> <name>sample string 2</name> <text>sample string 3</text> <url>sample string 6</url> </Keyword>