Query targets by exact custom tags

POST
/v1/scopes/{scope_id}/artifact-tags/query

Match all or any normalized labels within one Scope before pagination. Tags never grant visibility or enter model prompts.

Authorization

BearerAuth
AuthorizationBearer <token>

Bearer credential resolved to an opaque authenticated Principal by the Server deployment.

In: header

Path Parameters

scope_id*string
Length1 <= length <= 256

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/scopes/string/artifact-tags/query" \  -H "Content-Type: application/json" \  -d '{    "tags": [      "string"    ]  }'
{  "items": [    {      "scope_id": "string",      "target": {        "type": "artifact",        "family": "memory",        "artifact_id": "string"      },      "tags": [],      "tag_digest": "string",      "reference": {        "family": "string",        "artifact_id": "string",        "revision": 1      }    }  ],  "next_cursor": "string"}