List service identities
GET /v1/service-identities: Requires LIST_SERVICE_IDENTITY on the GoodMem instance and READ_SERVICE_IDENTITY on each returned row.
Requires LIST_SERVICE_IDENTITY on the GoodMem instance and READ_SERVICE_IDENTITY on each returned row. Owner and label filters, lifecycle filtering, authorization, and keyset pagination execute in PostgreSQL.
LABEL FILTERS: Label filters accept either label.<key>=<value> or label[key]=value (for example, label.environment=production or label[environment]=production).
In: header
Query Parameters
Exact current administrative-owner principal UUID
Include readable permanent tombstones
falsePage size; defaults to 50 and must be between 1 and 1000
50int32Opaque continuation token
Filter by label key-value pairs. Label filters accept either label.<key>=<value> or label[key]=value (for example, label.environment=production or label[environment]=production).
{"environment":"production","team":"nlp"}Empty Object
Response Body
curl -X GET "https://your-goodmem-server.example.com/v1/service-identities?ownerPrincipalId=550e8400-e29b-41d4-a716-446655440000&includeDeleted=false&maxResults=50&nextToken=string&label%5Benvironment%5D=production&label%5Bteam%5D=nlp"{
"serviceIdentities": [
{
"serviceIdentityId": "550e8400-e29b-41d4-a716-446655440000",
"displayName": "production-search",
"deletedAt": 1620200000000,
"createdAt": 1620000000000,
"updatedAt": 1620100000000
}
],
"nextToken": "string"
}