Sha256: 9d1223a999fb8b1a8cd487f575c3ca98f120e1e0afb7b4597a49fd4a673b7068
Contents?: true
Size: 544 Bytes
Versions: 53
Compression:
Stored size: 544 Bytes
Contents
## Autocompletion ### Autocomplete Tags `POST /api/v2/autocomplete/tags.json?name={name}` Returns an array of registered and recent tag names that start with the specified name. The name must be at least 2 characters in length. #### Allowed For * Agents #### Using curl ```bash curl https://{subdomain}.zendesk.com/api/v2/autocomplete/tags.json \ -X POST -d '{"name": "att"}' -H "Accept: application/json" \ -u {email_address}:{password} ``` #### Example Response ```http Status: 200 OK { "tags": [ "attention", "attack" ] } ```
Version data entries
53 entries across 53 versions & 1 rubygems