Skip to main content
GET
/
admin
/
reward
/
list
cURL
curl --request GET \
  --url 'https://app.teable.ai/api/admin/reward/list?spaceId=SOME_STRING_VALUE&sourceType=SOME_STRING_VALUE&status=SOME_STRING_VALUE&platform=SOME_STRING_VALUE&isValid=SOME_STRING_VALUE&search=SOME_STRING_VALUE&createdTimeFrom=SOME_STRING_VALUE&createdTimeTo=SOME_STRING_VALUE&page=SOME_INTEGER_VALUE&pageSize=SOME_INTEGER_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "items": [
    {
      "id": "<string>",
      "space": {
        "id": "<string>",
        "name": "<string>"
      },
      "user": {
        "id": "<string>",
        "name": "<string>",
        "email": "<string>"
      },
      "status": "pending",
      "sourceType": "appSumoActivation",
      "amount": 123,
      "consumedAmount": 123,
      "remainingAmount": 123,
      "rewardTime": "<string>",
      "expiredTime": "<string>",
      "createdTime": "<string>",
      "sourceMetaData": null
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

spaceId
string

Filter by space ID

sourceType
enum<string>

Filter by reward source type

Available options:
appSumoActivation,
socialShare,
system
status
enum<string>

Filter by reward status

Available options:
pending,
approved,
rejected
platform
enum<string>

Filter by social platform

Available options:
x,
linkedin
isValid
enum<string>

Filter by verification result

Available options:
true,
false

Search by postUrl, uniqueKey or userId

createdTimeFrom
string

Filter by created time from (ISO string)

createdTimeTo
string

Filter by created time to (ISO string)

page
integer
default:1
Required range: x >= 1
pageSize
integer
default:20
Required range: 1 <= x <= 100

Response

200 - application/json

Returns the paginated list of reward

items
object[]
required
total
integer
required
Last modified on March 5, 2026