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": "4479a660-43f0-4aa4-9181-4e54c6eab782",
"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>4479a660-43f0-4aa4-9181-4e54c6eab782</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>