Tags

Retrieve Tags

get

Retrieves the name and ID of the all the Tags, which can be used to alter Tag assocations on the different resources (SIMs, Connectors and Network Lists).

Tags allow you to group SIMs, users, Connectors and Network Lists into sub-groups within your organization to customize control and views.

If you want more information about the feature, check out our article How do I set up Tags?

Currently, creating and updating Tags should be done in the Tags page in the web app.

Authorizations
Responses
200

OK

application/json
Responseobject
get
GET /tags/search/tags HTTP/1.1
Host: api.onomondo.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "count": 2,
  "limit": 20,
  "offset": 0,
  "total": 2,
  "result": [
    {
      "id": "aef0c9c8-f6d5-4e93-a330-1f59d5093d92",
      "name": "Product A"
    },
    {
      "id": "a5023f47-1db8-425e-b664-dc0b8921f644",
      "name": "Supplier"
    }
  ]
}

Last updated