Skip to content
API Reference
Views

List view records

List view records using the reviewed public Micro API contract. Authentication uses the x-api-key header.

GET/v2/prism/{teamId}/{objectType}/views/{viewId}/records
x-api-key<token>

Public API key generated from Micro settings. Sent as the x-api-key header and validated by AWS API Gateway in front of the service.

In: header

Path Parameters

teamId*string
Formatuuid
objectType*string

Value in

  • "comment"
  • "action"
  • "deal"
  • "engagement"
  • "document"
  • "event"
  • "identity"
  • "organization"
viewId*string
Formatuuid

Query Parameters

cursor?string

Opaque cursor from a previous response's next_cursor. Pass it back unchanged to fetch the next page. When set, page and limit are derived from the cursor.

page?integer
Deprecated

Page number (1-based). Prefer cursor.

Range1 <= value
limit?integer
Range0 <= value <= 50

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://developers.micro.so/v2/prism/${MICRO_TEAM_ID}/comment/views/${VIEW_ID}/records" \  -H "x-api-key: $MICRO_API_KEY"
{  "data": [    {}  ],  "has_more": true,  "next_cursor": "string"}
micro.so