Lists protocol binding spec generations in one workspace.
GET
/v1/m/sessions/protocol-binding-specs
const url = 'https://example.com/v1/m/sessions/protocol-binding-specs?protocol=a2a&direction=inbound&local_kind=work_item&state=draft&limit=100';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/v1/m/sessions/protocol-binding-specs?protocol=a2a&direction=inbound&local_kind=work_item&state=draft&limit=100' \ --header 'Authorization: Bearer <token>'Lists protocol binding spec generations in one workspace. An empty page is returned as an empty array rather than null.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Header Parameters
Section titled “Header Parameters ” X-Olivares-Tenant
string format: uuid
Target tenant id; required when the principal can act in more than one tenant.
Query Parameters
Section titled “Query Parameters ” workspace_id
string format: uuid
Workspace UUID. It may be omitted only when the authenticated principal is confined to one workspace.
binding_key
string
Exact normalized binding-key filter.
generation
integer format: int64
Exact immutable spec generation.
protocol
string
Exact protocol filter.
direction
string
Exact binding direction filter.
local_kind
string
Exact local resource-kind filter.
peer_authority
string
Exact normalized peer authority filter.
state
string
Exact spec lifecycle-state filter.
limit
integer
Keyset page size from 1 through 200; default 100.
cursor
string format: uuid
Opaque UUIDv7 keyset cursor returned by the previous page.
Responses
Section titled “ Responses ”OK
Media type application/json
object
Example generated
{}Bad request
Media type application/json
object
Example generated
{}Unauthenticated
Media type application/json
object
Example generated
{}Forbidden
Media type application/json
object
Example generated
{}Not found
Media type application/json
object
Example generated
{}Conflict / setup required
Media type application/json
object
Example generated
{}Rate limited
Media type application/json
object
Example generated
{}