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
Keyword| Name | 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": "c1988d00-8e19-4c3c-9475-64727c92b7e3",
"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>c1988d00-8e19-4c3c-9475-64727c92b7e3</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>