Skip to main content
GET
/
v1
/
templates
/
{id}
/
tags
List the tag → build_id assignments for a template
import requests

url = "https://api.13-215-85-171.sslip.io/v1/templates/{id}/tags"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
[
  {
    "tag": "<string>",
    "build_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

API key passed as Bearer token

Path Parameters

id
string
required

Template ID or legacy unnamespaced template ref

Response

Tag → build assignments

tag
string
required
build_id
string
required
created_at
string<date-time>
required