Skip to main content
GET
/
v1
/
subjects
/
{subject_type}
/
{subject_id}
/
refresh-requests
List refresh requests
curl --request GET \
  --url https://tally-platform-api-xwka6vu2kq-ue.a.run.app/v1/subjects/{subject_type}/{subject_id}/refresh-requests \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "subject_type": "<string>",
      "subject_id": "<string>",
      "requesting_tenant_id": "<string>",
      "reason_code": "<string>",
      "message": "<string>",
      "requested_paths": [
        "<string>"
      ],
      "fulfilled_snapshot_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "fulfilled_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Firebase Auth JWT issued by Google Identity Platform. Obtain a token by signing in at your app domain and calling firebase.auth().currentUser.getIdToken().

Path Parameters

subject_type
enum<string>
required

Subject type discriminator.

Available options:
entity,
individual
subject_id
string
required

Stable subject identifier within its type namespace.

Query Parameters

limit
integer
default:20

Maximum number of results to return.

Required range: x <= 100
cursor
string

Opaque pagination cursor from a previous response's next_cursor.

Response

Refresh request list.

items
object[]
next_cursor
string | null