Skip to content

Getting a list of tags

Request

Return every profile tag in the team.

  • Effect: none. Read-only. Safe to retry with bounded backoff.
  • Note: this endpoint is not paginated and tags have no server-side limit, so the response grows with the number of tags your team has created. Size your client accordingly.
GET
/api/envtag/all
curl -i -X GET \
  http://127.0.0.1:40000/api/envtag/all

Responses

Success. data is an array of objects with the fields id and tagName, and an empty array when there is nothing to return.

Headers
any
Bodyapplication/json
codeintegerrequired

Return result code 0:Normal Other codes are exceptions.

msgstring or nullrequired

error message

dataArray of objectsrequired
requestIdstringrequired

Operation Request ID

Response
{ "code": 0, "msg": "", "data": [ {} ], "requestId": "" }