V5ApiPublic (1.0)
Download OpenAPI specification:Download
Welcome to the Tiltify V5 API docmentation site.
This is the public API for Tiltify. It is intended to be used by third party developers to build integrations with Tiltify. Additional documentation may be found at the Tiltify Developers documentation site.
The API uses the OpenAPI Specification (OAS) to define the API. More information about the OpenAPI Specification can be found at https://swagger.io/specification/.
Tiltify uses OAuth 2.0 access tokens to authenticate API requests. You may get an Application access_token
or a User access_token
.
To authenticate, you will need to create an application in the Tiltify User Dashboard, and use the generated credentials.
The method to get an application access token follows the Client Credentials Oauth2 grant flow.
You may give the required parameters to the Oauth Token Endpoint to get an access token for use with the api directly.
The method to get a user access token follows the OAuth2 Authorization Grant flow. The following is a specific example of how to retrieve A User Access token using OAuth2
Getting the code
This example will be using the following values as needed.
- Application ID: 1234
- Redirect https://www.example.com/redirect
- Secret Key: asdf
To begin with, send a user in a browser to the Tiltify OAuth Authorization url. Include your Client ID, and the response type of code
as query parameters.
You may include your redirect URI if you have more than one. A space separated list of scopes may also be added, however, if not included, the public
scope will be automatically selected.
https://v5api.tiltify.com/oauth/authorize?&client_id=1234&response_type=code&redirect_uri=https%3A%2F%2Fwww.example.com%2Fredirect&scope=public
After signing in and authorizing, the user will be redirected back to your chosen redirect URI with a query parameter of code
, containing the code used to fetch the access token.
https://www.example.com/redirect?code=1234abcdef
The code should be passed to your server backend as the following steps require your secret key, which should not be exposed to the public.
Converting The Code To A User Access Token
To retrieve the User Access Token, a post request must be made to the Token URL. In the body of the url are the following fields in Form Data format. Note specifically that code is the code retrieved from the first step.
client_id=1234
redirect_uri=https://www.example.com/redirect
code=1234abcdef
grant_type=authorization_code
Tiltify will return a response like the following:
{
"access_token": "ab6a592346444dea97170837e104d8a5ab6a592346444dea97170837e104d8a5",
"created_at": "2023-01-27T19:32:03Z",
"expires_in": 7200,
"refresh_token": "njjjytm3otetmgrjmi00yjawlwe4zgytzjixy2mzm2y3njawcg121231999393a3",
"scope": "public",
"token_type": "bearer"
}
This access token may now be used as shown below to make requests. When used with the /current-user endpoint, the full user
object is returned.
Add the Authorization header to your HTTP request.
Authorization: Bearer <access_token>
Example:
Authorization: Bearer ab6a592346444dea97170837e104d8a5ab6a592346444dea97170837e104d8a5
When an initial access token is created, a refresh token will be provided. The refresh token can be used to get a new access token when the current one expires. To do this, make a post request to the token url with grant_type set to refresh_token
.
Example:
To refresh the User Access Token, a post request must be made to the Token URL. In the body of the url are the following fields in Form Data or json format.
client_id=1234
client_secret=asdf
grant_type=refresh_token
refresh_token=njjjytm3otetmgrjmi00yjawlwe4zgytzjixy2mzm2y3njawcg121231999393a3
Tiltify provides a dashboard to subscribe and test campaign and campaign donation webhooks.
To register a webhook, visit the Developer Dashboard
In order to begin registering webhooks, you must first create an application.
In the application dashboard, there will be a side navigation option for Webhooks
.
- Click the
Add Webhook
button - Create the webhook with an endpoint URL and an optional description.
- Click edit on the newly created webhook
- Click the
Events
submenu and add and event to subscribe to using theAdd event
button. - Enter your Campaign ID, this can be found in your campaign's dashboard under
Setup > Information
- Once created, click the
...
button and select Edit - Select the donation and/or Campaign events you would like to receive to your webhook endpoint and click
Update Event
. Including private data may include sensitive information, so please ensure that you secure your application.
You should now receive updates for those events on your webhook url.
Caution: When we send a webhook we expect the endpoint to respond with a 200-299 status code. If we do not receive that, we deactivate the webhook after about an hour.
Once a webhook is created, you may send test messages through the Testing
Submenu.
An example payload will be shown for each event type.
Click Send Test
to initiate the test.
Get auction house by user slug and auction house slug
Returns an auction house by its user slug and auction house slug
Authorizations:
path Parameters
user_slug required | string User slug |
auction_house_slug required | string Auction house slug |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "banner": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "campaign_id": "1a7e0d4e-2589-4b6d-a090-62862ce2e2f1",
- "cause_id": "d663eb52-73e4-47da-aa08-93678dba4dae",
- "description": "My Awesome weekend auction house.",
- "fundraising_event_id": "bb4aade2-01d7-4b22-9d38-bf3c0a9303ac",
- "id": "c6e50042-6e67-4a0f-aa84-c331b52ae037",
- "inserted_at": "2024-09-03T18:26:34.015858Z",
- "name": "My Awesome Auction House",
- "pledged_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "pledged_total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.015874Z",
- "retired_at": "2024-09-03T18:26:34.015879Z",
- "slug": "my-awesome-auction-house",
- "status": "published",
- "team_event_id": "65ed9dba-5704-43b4-a650-d8a926ba153c",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.015885Z",
- "user_id": "ea207dc1-37d1-400b-be39-d2e76421cb43"
}
}
Get by ID
Returns a auction house by its ID
Authorizations:
path Parameters
auction_house_id required | string Auction House ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "banner": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "campaign_id": "1a7e0d4e-2589-4b6d-a090-62862ce2e2f1",
- "cause_id": "d663eb52-73e4-47da-aa08-93678dba4dae",
- "description": "My Awesome weekend auction house.",
- "fundraising_event_id": "bb4aade2-01d7-4b22-9d38-bf3c0a9303ac",
- "id": "c6e50042-6e67-4a0f-aa84-c331b52ae037",
- "inserted_at": "2024-09-03T18:26:34.015858Z",
- "name": "My Awesome Auction House",
- "pledged_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "pledged_total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.015874Z",
- "retired_at": "2024-09-03T18:26:34.015879Z",
- "slug": "my-awesome-auction-house",
- "status": "published",
- "team_event_id": "65ed9dba-5704-43b4-a650-d8a926ba153c",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.015885Z",
- "user_id": "ea207dc1-37d1-400b-be39-d2e76421cb43"
}
}
List auction items
Authorizations:
path Parameters
auction_house_id required | string Auction House ID |
query Parameters
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only auction items that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only auction items that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only auction items that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only auction items that have been updated after the given moment in ISO8601 format |
status | string Example: status=completed Status of the auction item. One of: active, or completed |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "activated_at": "2024-09-03T18:26:32.421222Z",
- "completed_at": "2024-09-03T18:26:32.421241Z",
- "description": "My Awesome weekend auction item.",
- "ends_at": "2024-09-03T18:26:32.421246Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "4e93bfca-ea84-4f75-a7eb-cb0f393aeb81",
- "images": [
- {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}
], - "inserted_at": "2024-09-03T18:26:34.092210Z",
- "legal": "This is a legal disclaimer.",
- "name": "My Awesome Auction Item",
- "rules": "To bid you must be in the USA.",
- "short_description": "short auction item.",
- "starting_bid": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2024-09-03T18:26:34.092229Z",
- "status": "active"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get auction house auction item by ID
Returns a auction item by its ID
Authorizations:
path Parameters
auction_house_id required | string Auction House ID |
auction_item_id required | string Auction Item ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "activated_at": "2024-09-03T18:26:32.421222Z",
- "completed_at": "2024-09-03T18:26:32.421241Z",
- "description": "My Awesome weekend auction item.",
- "ends_at": "2024-09-03T18:26:32.421246Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "4e93bfca-ea84-4f75-a7eb-cb0f393aeb81",
- "images": [
- {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}
], - "inserted_at": "2024-09-03T18:26:34.092210Z",
- "legal": "This is a legal disclaimer.",
- "name": "My Awesome Auction Item",
- "rules": "To bid you must be in the USA.",
- "short_description": "short auction item.",
- "starting_bid": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2024-09-03T18:26:34.092229Z",
- "status": "active"
}
}
List auction bids for an auction item
Authorizations:
path Parameters
auction_house_id required | string Auction House ID |
auction_item_id required | string Auction Item ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "auction_house_id": "2edcaf70-1408-4bf4-b9b4-33dbb205074e",
- "auction_item_id": "812a755b-dcd9-4d62-8954-e51591b06252",
- "current_winner": false,
- "id": "0b10e87a-be78-41c5-be63-22824f966494",
- "inserted_at": "2024-09-03T18:26:33.915944Z",
- "public_name": "John Doe",
- "removed_at": "2024-09-03T18:26:33.915991Z",
- "updated_at": "2024-09-03T18:26:33.915962Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get auction house by cause slug and auction house slug
Returns an auction house by its cause slug and auction house slug
Authorizations:
path Parameters
cause_slug required | string Caus slug |
auction_house_slug required | string Auction house slug |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "banner": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "campaign_id": "1a7e0d4e-2589-4b6d-a090-62862ce2e2f1",
- "cause_id": "d663eb52-73e4-47da-aa08-93678dba4dae",
- "description": "My Awesome weekend auction house.",
- "fundraising_event_id": "bb4aade2-01d7-4b22-9d38-bf3c0a9303ac",
- "id": "c6e50042-6e67-4a0f-aa84-c331b52ae037",
- "inserted_at": "2024-09-03T18:26:34.015858Z",
- "name": "My Awesome Auction House",
- "pledged_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "pledged_total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.015874Z",
- "retired_at": "2024-09-03T18:26:34.015879Z",
- "slug": "my-awesome-auction-house",
- "status": "published",
- "team_event_id": "65ed9dba-5704-43b4-a650-d8a926ba153c",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.015885Z",
- "user_id": "ea207dc1-37d1-400b-be39-d2e76421cb43"
}
}
List schedules
Authorizations:
path Parameters
campaign_id required | string Campaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "description": null,
- "ends_at": "2024-09-03T18:26:32.068889Z",
- "id": "0a353119-5164-49b1-83d5-84f4c4492966",
- "inserted_at": "2024-09-03T18:26:32.068935Z",
- "legacy_id": 856587234,
- "name": "Holiday Special Livestream",
- "starts_at": "2024-09-03T18:26:32.068951Z",
- "updated_at": "2024-09-03T18:26:32.068954Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List fitness goals
Authorizations:
path Parameters
campaign_id required | string Campaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "current_value": "44.4",
- "distance_unit": "mile",
- "goal": "1000",
- "id": "8733f7d1-806c-4522-a07d-332a5320838e",
- "type": "Running"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get campaign by user slug and campaign slug
Returns a Campaign by its user slug and campaign slug
Authorizations:
path Parameters
user_slug required | string User Slug |
campaign_slug required | string Campaign Slug |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "2df1b815-d67f-4bc8-ac03-a4587b1aa503",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "277d6a9f-c0ab-4366-ad5a-96beda3c7d4a",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "bad17e8a-c559-4494-bb0b-c5cf0d510f19",
- "inserted_at": "2024-09-03T18:26:34.129864Z",
- "legacy_id": 328486018,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.129893Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.129897Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "4799ed2d-167c-4361-9600-28406359387c"
}
}
List polls
Authorizations:
path Parameters
campaign_id required | string Campaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "85d70944-1405-418f-ac07-3c644562fa82",
- "inserted_at": "2024-09-03T18:26:34.624596Z",
- "legacy_id": 894914163,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}
], - "updated_at": "2024-09-03T18:26:34.717833Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List targets
Authorizations:
path Parameters
campaign_id required | string Campaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "ends_at": "2024-09-03T18:26:34.750947Z",
- "id": "d77d6119-1377-4301-b49d-4075bec00e0d",
- "inserted_at": "2024-09-03T18:26:34.751429Z",
- "legacy_id": 407491933,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.751452Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get campaign poll by ID
Returns a poll by its ID
Authorizations:
path Parameters
poll_id required | string Poll ID |
campaign_id required | string Campaign ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "85d70944-1405-418f-ac07-3c644562fa82",
- "inserted_at": "2024-09-03T18:26:34.624596Z",
- "legacy_id": 894914163,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}
], - "updated_at": "2024-09-03T18:26:34.717833Z"
}
}
List donations
Authorizations:
path Parameters
campaign_id required | string Campaign ID or legacy ID |
query Parameters
completed_before | string Example: completed_before=2021-11-02T14:24:55.811924Z Returns only donations that have been completed before the given moment in ISO8601 format |
completed_after | string Example: completed_after=2021-11-02T14:24:55.811924Z Returns only donations that have been completed after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "campaign_id": "a3f0030f-4179-4b41-b5b7-899bccc7e606",
- "cause_id": "7f5e1e3f-bc44-40c8-a9cd-a9f65b0b71dc",
- "completed_at": "2024-11-13T20:04:12.308655Z",
- "donation_matches": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2024-10-09T17:33:18.387586Z",
- "donation_id": "51e294d3-46af-443a-9aec-478394a9c9ec",
- "ends_at": "2024-10-09T17:33:18.387582Z",
- "id": "082d73ae-fb6d-472c-80a3-0c24cee62744",
- "inserted_at": "2024-10-09T17:33:18.387559Z",
- "matched_by": "Big Donor 1",
- "pledged_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "started_at_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2024-10-09T17:33:18.387578Z",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-10-09T17:33:18.387574Z"
}
], - "donor_comment": "Keep up the great work!",
- "donor_name": "Test Name",
- "fundraising_event_id": "27ab8aed-0d6f-4ac5-9158-372e59505177",
- "id": "1a8808b5-aee3-4ce8-b028-9ef402b60598",
- "legacy_id": 51558945,
- "poll_id": "49159b71-042c-481b-b712-9674c7bf5c5e",
- "poll_option_id": "db8f5a67-8493-4b7f-ae6c-d723246b9550",
- "reward_claims": [
- {
- "id": "884e7354-443c-45e4-bac7-2d5bfefb2078",
- "quantity": 1,
- "reward_id": "d9ffb1fb-b44f-4657-b12e-cfa7c43026a5"
}
], - "reward_id": "2ccc0968-8e86-4430-893c-a33367e6a8d0",
- "sustained": false,
- "target_id": "0e5eda33-6ccc-4fce-89fc-a6911399dba2",
- "team_event_id": "4a40d89e-0d06-4e4d-865c-80f49e67aa9c"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List donation matches
Authorizations:
path Parameters
campaign_id required | string Campaign ID or legacy ID |
query Parameters
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only donation matches that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only donation matches that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only donation matches that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only donation matches that have been updated after the given moment in ISO8601 format |
status | string Example: status=completed Status of the donation match. One of: active, or completed |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2024-10-09T17:33:18.387586Z",
- "donation_id": "51e294d3-46af-443a-9aec-478394a9c9ec",
- "ends_at": "2024-10-09T17:33:18.387582Z",
- "id": "082d73ae-fb6d-472c-80a3-0c24cee62744",
- "inserted_at": "2024-10-09T17:33:18.387559Z",
- "matched_by": "Big Donor 1",
- "pledged_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "started_at_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2024-10-09T17:33:18.387578Z",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-10-09T17:33:18.387574Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get by ID
Returns a campaign by its ID
Authorizations:
path Parameters
campaign_id required | string Campaign ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "2df1b815-d67f-4bc8-ac03-a4587b1aa503",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "277d6a9f-c0ab-4366-ad5a-96beda3c7d4a",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "bad17e8a-c559-4494-bb0b-c5cf0d510f19",
- "inserted_at": "2024-09-03T18:26:34.129864Z",
- "legacy_id": 328486018,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.129893Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.129897Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "4799ed2d-167c-4361-9600-28406359387c"
}
}
List rewards
Authorizations:
path Parameters
campaign_id required | string Campaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "description": "The streamer will pick a song and sing it poorly",
- "ends_at": "2024-09-03T18:26:34.645833Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "highlighted": true,
- "id": "4953f03c-b94d-4c45-98d3-5b48ce18cef5",
- "image": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "inserted_at": "2024-09-03T18:26:34.645871Z",
- "legacy_id": 339726694,
- "name": "Sing a Song Poorly",
- "quantity": 1000,
- "quantity_remaining": 23,
- "starts_at": "2024-09-03T18:26:34.645898Z",
- "updated_at": "2024-09-03T18:26:34.645902Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List milestones
Authorizations:
path Parameters
campaign_id required | string Campaign ID or legacy ID |
query Parameters
include_disabled | boolean Example: include_disabled=true Returns disabled milestones. Defaults to false |
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "905bd095-d12c-439c-9205-274bb3f6e269",
- "inserted_at": "2024-09-03T18:26:34.547817Z",
- "legacy_id": 848531749,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.547847Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top donors
Authorizations:
path Parameters
campaign_id required | string Campaign ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top teams
Authorizations:
path Parameters
cause_id required | string Cause ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List fundraising events
Authorizations:
path Parameters
cause_id required | string Cause ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "can_publish_supporting_at": "2024-09-03T18:26:33.700507Z",
- "cause_id": "e17a928d-3c71-4632-a39b-1cb8cfaade5f",
- "currency_code": "USD",
- "description": "Let's get **spooooky**!",
- "end_supporting_at": "2024-09-03T18:26:33.700504Z",
- "ends_at": "2024-09-03",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "37bb0e81-c5a9-4b56-9960-32413b284f0f",
- "inserted_at": "2024-09-03T18:26:33.700458Z",
- "legacy_id": 629734224,
- "name": "Spooktober 2022",
- "published_at": "2024-09-03T18:26:33.700486Z",
- "retired_at": null,
- "slug": "spooktober-2022",
- "start_supporting_at": "2024-09-03T18:26:33.700501Z",
- "starts_at": "2024-09-03",
- "status": "published",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:33.700515Z",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top donors
Authorizations:
path Parameters
cause_id required | string Cause ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top fundraisers
Authorizations:
path Parameters
cause_id required | string Cause ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get by ID
Returns a cause by its ID
Authorizations:
path Parameters
cause_id required | string Cause ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "contact": {
- "address_line1": "22251 Bahringer Turnpike",
- "address_line2": null,
- "city": "Bright Tree Village",
- "country": "Outer Rim",
- "email": "contact@erf.test",
- "postal_code": "20001",
- "region": "Endor"
}, - "currency_code": "USD",
- "description": "Ewok Rescue Foundation (ERF) works around the forest moon of Endor to promote the most effective Ewok protection. Join us and help us to build a better Endor!",
- "government_id": "12-3456789",
- "id": "00abb960-8ee7-42f3-b9cd-0b91d83f7823",
- "inserted_at": "2024-09-03T18:26:33.416128Z",
- "legacy_id": 506830531,
- "name": "Ewok Rescue Foundation",
- "short_description": "ERF works in Endor to protect the Ewoks",
- "slug": "ewok-rescue-foundation",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "updated_at": "2024-09-03T18:26:33.416158Z"
}
}
List top teams
Authorizations:
path Parameters
fundraising_event_id required | string Fundraising Event ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top fundraisers
Authorizations:
path Parameters
fundraising_event_id required | string Fundraising Event ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top teams fitness times
Authorizations:
path Parameters
fundraising_event_id required | string Fundraising Event ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top users fitness distances
Authorizations:
path Parameters
fundraising_event_id required | string Fundraising Event ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top users fitness times
Authorizations:
path Parameters
fundraising_event_id required | string Fundraising Event ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top donors
Authorizations:
path Parameters
fundraising_event_id required | string Fundraising Event ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List campaigns
Returns supporting campaigns by Fundraising Event ID
Authorizations:
path Parameters
fundraising_event_id required | string Fundraising event ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "2df1b815-d67f-4bc8-ac03-a4587b1aa503",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "277d6a9f-c0ab-4366-ad5a-96beda3c7d4a",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "bad17e8a-c559-4494-bb0b-c5cf0d510f19",
- "inserted_at": "2024-09-03T18:26:34.129864Z",
- "legacy_id": 328486018,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.129893Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.129897Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "4799ed2d-167c-4361-9600-28406359387c"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get by ID
Returns a fundraising event by its ID
Authorizations:
path Parameters
fundraising_event_id required | string Fundraising Event ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "can_publish_supporting_at": "2024-09-03T18:26:33.700507Z",
- "cause_id": "e17a928d-3c71-4632-a39b-1cb8cfaade5f",
- "currency_code": "USD",
- "description": "Let's get **spooooky**!",
- "end_supporting_at": "2024-09-03T18:26:33.700504Z",
- "ends_at": "2024-09-03",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "37bb0e81-c5a9-4b56-9960-32413b284f0f",
- "inserted_at": "2024-09-03T18:26:33.700458Z",
- "legacy_id": 629734224,
- "name": "Spooktober 2022",
- "published_at": "2024-09-03T18:26:33.700486Z",
- "retired_at": null,
- "slug": "spooktober-2022",
- "start_supporting_at": "2024-09-03T18:26:33.700501Z",
- "starts_at": "2024-09-03",
- "status": "published",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:33.700515Z",
}
}
List top teams fitness distances
Authorizations:
path Parameters
fundraising_event_id required | string Fundraising Event ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List fitness goals
Authorizations:
path Parameters
fundraising_event_id required | string FundraisingEvent ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "current_value": "44.4",
- "distance_unit": "mile",
- "goal": "1000",
- "id": "8733f7d1-806c-4522-a07d-332a5320838e",
- "type": "Running"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List donations Deprecated
This endpoint will list donations for a given Fundraising Event. Contact support for access to this endpoint.
Authorizations:
path Parameters
fundraising_event_id required | string FundraisingEvent ID or legacy ID |
query Parameters
completed_before | string Example: completed_before=2021-11-02T14:24:55.811924Z Returns only donations that have been completed before the given moment in ISO8601 format |
completed_after | string Example: completed_after=2021-11-02T14:24:55.811924Z Returns only donations that have been completed after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "campaign_id": "a3f0030f-4179-4b41-b5b7-899bccc7e606",
- "cause_id": "7f5e1e3f-bc44-40c8-a9cd-a9f65b0b71dc",
- "completed_at": "2024-11-13T20:04:12.308655Z",
- "donation_matches": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2024-10-09T17:33:18.387586Z",
- "donation_id": "51e294d3-46af-443a-9aec-478394a9c9ec",
- "ends_at": "2024-10-09T17:33:18.387582Z",
- "id": "082d73ae-fb6d-472c-80a3-0c24cee62744",
- "inserted_at": "2024-10-09T17:33:18.387559Z",
- "matched_by": "Big Donor 1",
- "pledged_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "started_at_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2024-10-09T17:33:18.387578Z",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-10-09T17:33:18.387574Z"
}
], - "donor_comment": "Keep up the great work!",
- "donor_name": "Test Name",
- "fundraising_event_id": "27ab8aed-0d6f-4ac5-9158-372e59505177",
- "id": "1a8808b5-aee3-4ce8-b028-9ef402b60598",
- "legacy_id": 51558945,
- "poll_id": "49159b71-042c-481b-b712-9674c7bf5c5e",
- "poll_option_id": "db8f5a67-8493-4b7f-ae6c-d723246b9550",
- "reward_claims": [
- {
- "id": "884e7354-443c-45e4-bac7-2d5bfefb2078",
- "quantity": 1,
- "reward_id": "d9ffb1fb-b44f-4657-b12e-cfa7c43026a5"
}
], - "reward_id": "2ccc0968-8e86-4430-893c-a33367e6a8d0",
- "sustained": false,
- "target_id": "0e5eda33-6ccc-4fce-89fc-a6911399dba2",
- "team_event_id": "4a40d89e-0d06-4e4d-865c-80f49e67aa9c"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Token
Returns an access and refresh token with a provided client id, secret, and grant type. Tokens expire in 7200
seconds.
Authorizations:
query Parameters
client_id required | string Client Id |
client_secret required | string Client Secret |
grant_type required | string Default: "client_credentials" Enum: "client_credentials" "authorization_code" "refresh_token" Grant Type |
code | string Authorization Code; |
refresh_token | string Refresh Token; |
scope | string Default: "public" Value: "public" Scope |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "access_token": "ab6a592346444dea97170837e104d8a5ab6a592346444dea97170837e104d8a5",
- "created_at": "2023-01-27T19:32:03Z",
- "expires_in": 7200,
- "refresh_token": "njjjytm3otetmgrjmi00yjawlwe4zgytzjixy2mzm2y3njawcg121231999393a3",
- "scope": "public",
- "token_type": "bearer"
}
Authorize
Returns a code
through the applications redirect_uri
to be used with the /token
with the authorization_code
grant.
Authorizations:
query Parameters
client_id required | string Client Id |
redirect_uri required | string Redirect URI |
response_type required | string Value: "code" Response Type |
scope | string Default: "public" Value: "public" Scope |
List milestones
Authorizations:
path Parameters
personal_campaign_id required | string Campaign ID |
query Parameters
include_disabled | boolean Example: include_disabled=true Returns disabled milestones. Defaults to false |
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "905bd095-d12c-439c-9205-274bb3f6e269",
- "inserted_at": "2024-09-03T18:26:34.547817Z",
- "legacy_id": 848531749,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.547847Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List rewards
Authorizations:
path Parameters
personal_campaign_id required | string Campaign ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "description": "The streamer will pick a song and sing it poorly",
- "ends_at": "2024-09-03T18:26:34.645833Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "highlighted": true,
- "id": "4953f03c-b94d-4c45-98d3-5b48ce18cef5",
- "image": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "inserted_at": "2024-09-03T18:26:34.645871Z",
- "legacy_id": 339726694,
- "name": "Sing a Song Poorly",
- "quantity": 1000,
- "quantity_remaining": 23,
- "starts_at": "2024-09-03T18:26:34.645898Z",
- "updated_at": "2024-09-03T18:26:34.645902Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get campaign poll by ID
Returns a poll by its ID
Authorizations:
path Parameters
poll_id required | string Poll ID |
personal_campaign_id required | string Campaign ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "85d70944-1405-418f-ac07-3c644562fa82",
- "inserted_at": "2024-09-03T18:26:34.624596Z",
- "legacy_id": 894914163,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}
], - "updated_at": "2024-09-03T18:26:34.717833Z"
}
}
Get by ID
Returns a personal campaign by its ID
Authorizations:
path Parameters
personal_campaign_id required | string Personal Campaign ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "My Awesome weekend campaign.",
- "fundraising_for_name": "ME!",
- "fundraising_for_self": true,
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "f9c2ca00-3b86-4edb-9b35-1c775933b841",
- "inserted_at": "2024-10-09T17:33:18.603738Z",
- "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-10-09T17:33:18.603753Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-10-09T17:33:18.603756Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "1c117faa-4b8a-484d-9363-4e1e2baf32f6"
}
}
List supporting campaigns
Authorizations:
path Parameters
personal_campaign_id required | string Personal Campaign ID |
query Parameters
status | string Enum: "published" "retired" Example: status=published Use this parameter to filter campaigns by the given status. |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated before the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "My Awesome weekend campaign.",
- "fundraising_for_name": "ME!",
- "fundraising_for_self": true,
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "f9c2ca00-3b86-4edb-9b35-1c775933b841",
- "inserted_at": "2024-10-09T17:33:18.603738Z",
- "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-10-09T17:33:18.603753Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-10-09T17:33:18.603756Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "1c117faa-4b8a-484d-9363-4e1e2baf32f6"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List gifts
Authorizations:
path Parameters
personal_campaign_id required | string Campaign ID |
query Parameters
completed_before | string Example: completed_before=2021-11-02T14:24:55.811924Z Returns only donations that have been completed before the given moment in ISO8601 format |
completed_after | string Example: completed_after=2021-11-02T14:24:55.811924Z Returns only donations that have been completed after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2024-10-09T17:33:18.367973Z",
- "donor_comment": "Keep up the great work!",
- "donor_name": "Test Name",
- "gift_matches": [ ],
- "id": "76da8bc9-e765-4d5c-9143-3ac4cbbdf066",
- "is_match": false,
- "personal_campaign_id": "c335993b-b8a4-4e45-a04a-16d542f1e7ba",
- "poll_id": "ecad37d9-53e7-4d2c-8bb6-5aafec3f2519",
- "poll_option_id": "71932fda-e3ab-4a5d-b7d9-40ec2b3a0e0f",
- "reward_claims": [
- {
- "id": "c2131e15-fd21-4205-93fa-a18b1c43440c",
- "quantity": 1,
- "reward_id": "681bfe5b-ac40-42a4-afb6-953614615b26"
}
], - "target_id": "91bdc998-be70-4496-8469-ab828d8ae435"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List schedules
Authorizations:
path Parameters
personal_campaign_id required | string Campaign ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "description": null,
- "ends_at": "2024-09-03T18:26:32.068889Z",
- "id": "0a353119-5164-49b1-83d5-84f4c4492966",
- "inserted_at": "2024-09-03T18:26:32.068935Z",
- "legacy_id": 856587234,
- "name": "Holiday Special Livestream",
- "starts_at": "2024-09-03T18:26:32.068951Z",
- "updated_at": "2024-09-03T18:26:32.068954Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List polls
Authorizations:
path Parameters
personal_campaign_id required | string Campaign ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "85d70944-1405-418f-ac07-3c644562fa82",
- "inserted_at": "2024-09-03T18:26:34.624596Z",
- "legacy_id": 894914163,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}
], - "updated_at": "2024-09-03T18:26:34.717833Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List targets
Authorizations:
path Parameters
personal_campaign_id required | string Campaign ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "ends_at": "2024-09-03T18:26:34.750947Z",
- "id": "d77d6119-1377-4301-b49d-4075bec00e0d",
- "inserted_at": "2024-09-03T18:26:34.751429Z",
- "legacy_id": 407491933,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.751452Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get by ID
Returns a team by its ID
Authorizations:
path Parameters
team_id required | string Team ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "1470f78e-f3f3-41ac-b3ee-6e80fc1049fd",
- "legacy_id": 629672320,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}
}
List team members
Authorizations:
path Parameters
team_id required | string Team ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "id": "3ad1fac3-b0fa-4ab7-9b0c-2908a5f1bd62",
- "inserted_at": "2024-09-03T18:26:32.015037Z",
- "legacy_id": 734215853,
- "roles": [
- {
- "id": "f5e2c142-522f-41e1-bd26-223da2cb187e",
- "key": "team_super_admin",
- "name": "Team Administrator"
}
], - "updated_at": "2024-09-03T18:26:33.302053Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List Team Campaigns
Authorizations:
path Parameters
team_id required | string Team ID |
query Parameters
status | string Enum: "published" "retired" Example: status=published Use this parameter to filter campaigns by the given status. |
supporting_type | string Enum: "invite_only" "none" "private" "public" Example: supporting_type=public Use this parameter to filter campaigns by the given supporting type. |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated before the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "currency_code": "USD",
- "description": "Let's fundraise togehter",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "bb9e441a-3370-4ba0-8ef5-73bf06c7a3e3",
- "inserted_at": "2024-09-03T18:26:34.808478Z",
- "legacy_id": 956672439,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "Our Awesome Team Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.808509Z",
- "retired_at": null,
- "slug": "our-awesome-team-campaign",
- "status": "published",
- "supportable": "none",
- "supporting_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "team": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "1470f78e-f3f3-41ac-b3ee-6e80fc1049fd",
- "legacy_id": 629672320,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}, - "team_id": "ef8300fe-48ea-48e2-8d99-429cfc1c3648",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.808517Z",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get by slug
Returns a team by its slug
Authorizations:
path Parameters
slug required | string Team slug |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "1470f78e-f3f3-41ac-b3ee-6e80fc1049fd",
- "legacy_id": 629672320,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}
}
List targets
Authorizations:
path Parameters
team_campaign_id required | string Team Campaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "ends_at": "2024-09-03T18:26:34.750947Z",
- "id": "d77d6119-1377-4301-b49d-4075bec00e0d",
- "inserted_at": "2024-09-03T18:26:34.751429Z",
- "legacy_id": 407491933,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.751452Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List polls
Authorizations:
path Parameters
team_campaign_id required | string Team Campaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "85d70944-1405-418f-ac07-3c644562fa82",
- "inserted_at": "2024-09-03T18:26:34.624596Z",
- "legacy_id": 894914163,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}
], - "updated_at": "2024-09-03T18:26:34.717833Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List donations
Authorizations:
path Parameters
team_campaign_id required | string Team Campaign ID or legacy ID |
query Parameters
completed_before | string Example: completed_before=2021-11-02T14:24:55.811924Z Returns only donations that have been completed before the given moment in ISO8601 format |
completed_after | string Example: completed_after=2021-11-02T14:24:55.811924Z Returns only donations that have been completed after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "campaign_id": "a3f0030f-4179-4b41-b5b7-899bccc7e606",
- "cause_id": "7f5e1e3f-bc44-40c8-a9cd-a9f65b0b71dc",
- "completed_at": "2024-11-13T20:04:12.308655Z",
- "donation_matches": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2024-10-09T17:33:18.387586Z",
- "donation_id": "51e294d3-46af-443a-9aec-478394a9c9ec",
- "ends_at": "2024-10-09T17:33:18.387582Z",
- "id": "082d73ae-fb6d-472c-80a3-0c24cee62744",
- "inserted_at": "2024-10-09T17:33:18.387559Z",
- "matched_by": "Big Donor 1",
- "pledged_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "started_at_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2024-10-09T17:33:18.387578Z",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-10-09T17:33:18.387574Z"
}
], - "donor_comment": "Keep up the great work!",
- "donor_name": "Test Name",
- "fundraising_event_id": "27ab8aed-0d6f-4ac5-9158-372e59505177",
- "id": "1a8808b5-aee3-4ce8-b028-9ef402b60598",
- "legacy_id": 51558945,
- "poll_id": "49159b71-042c-481b-b712-9674c7bf5c5e",
- "poll_option_id": "db8f5a67-8493-4b7f-ae6c-d723246b9550",
- "reward_claims": [
- {
- "id": "884e7354-443c-45e4-bac7-2d5bfefb2078",
- "quantity": 1,
- "reward_id": "d9ffb1fb-b44f-4657-b12e-cfa7c43026a5"
}
], - "reward_id": "2ccc0968-8e86-4430-893c-a33367e6a8d0",
- "sustained": false,
- "target_id": "0e5eda33-6ccc-4fce-89fc-a6911399dba2",
- "team_event_id": "4a40d89e-0d06-4e4d-865c-80f49e67aa9c"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List schedules
Authorizations:
path Parameters
team_campaign_id required | string Team Campaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "description": null,
- "ends_at": "2024-09-03T18:26:32.068889Z",
- "id": "0a353119-5164-49b1-83d5-84f4c4492966",
- "inserted_at": "2024-09-03T18:26:32.068935Z",
- "legacy_id": 856587234,
- "name": "Holiday Special Livestream",
- "starts_at": "2024-09-03T18:26:32.068951Z",
- "updated_at": "2024-09-03T18:26:32.068954Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get by ID
Returns a Team Campaign by its ID
Authorizations:
path Parameters
team_campaign_id required | string Team Campaign ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "currency_code": "USD",
- "description": "Let's fundraise togehter",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "bb9e441a-3370-4ba0-8ef5-73bf06c7a3e3",
- "inserted_at": "2024-09-03T18:26:34.808478Z",
- "legacy_id": 956672439,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "Our Awesome Team Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.808509Z",
- "retired_at": null,
- "slug": "our-awesome-team-campaign",
- "status": "published",
- "supportable": "none",
- "supporting_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "team": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "1470f78e-f3f3-41ac-b3ee-6e80fc1049fd",
- "legacy_id": 629672320,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}, - "team_id": "ef8300fe-48ea-48e2-8d99-429cfc1c3648",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.808517Z",
}
}
List milestones
Authorizations:
path Parameters
team_campaign_id required | string Team Campaign ID or legacy ID |
query Parameters
include_disabled | boolean Example: include_disabled=true Returns disabled milestones. Defaults to false |
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "905bd095-d12c-439c-9205-274bb3f6e269",
- "inserted_at": "2024-09-03T18:26:34.547817Z",
- "legacy_id": 848531749,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.547847Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top fundraisers
Authorizations:
path Parameters
team_campaign_id required | string Team Event ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List fitness goals
Authorizations:
path Parameters
team_campaign_id required | string TeamCampaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "current_value": "44.4",
- "distance_unit": "mile",
- "goal": "1000",
- "id": "8733f7d1-806c-4522-a07d-332a5320838e",
- "type": "Running"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get team campaign poll by ID
Returns a poll by its ID
Authorizations:
path Parameters
poll_id required | string Poll ID |
team_campaign_id required | string Team Campaign ID or legacy ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "85d70944-1405-418f-ac07-3c644562fa82",
- "inserted_at": "2024-09-03T18:26:34.624596Z",
- "legacy_id": 894914163,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "ab041b28-c341-4a32-89b6-988e45a5be73",
- "inserted_at": "2024-09-03T18:26:34.625430Z",
- "legacy_id": 5865656,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2024-09-03T18:26:34.625444Z"
}
], - "updated_at": "2024-09-03T18:26:34.717833Z"
}
}
List rewards
Authorizations:
path Parameters
team_campaign_id required | string Team Campaign ID or legacy ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "description": "The streamer will pick a song and sing it poorly",
- "ends_at": "2024-09-03T18:26:34.645833Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "highlighted": true,
- "id": "4953f03c-b94d-4c45-98d3-5b48ce18cef5",
- "image": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "inserted_at": "2024-09-03T18:26:34.645871Z",
- "legacy_id": 339726694,
- "name": "Sing a Song Poorly",
- "quantity": 1000,
- "quantity_remaining": 23,
- "starts_at": "2024-09-03T18:26:34.645898Z",
- "updated_at": "2024-09-03T18:26:34.645902Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List top donors
Authorizations:
path Parameters
team_campaign_id required | string Team Event ID |
query Parameters
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 403
- 404
- 422
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "42808909-4699-4894-92ba-ffd9069b3e4d",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
List supporting campaigns
Authorizations:
path Parameters
team_campaign_id required | string Team Campaign ID |
query Parameters
status | string Enum: "published" "retired" Example: status=published Use this parameter to filter campaigns by the given status. |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated before the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "2df1b815-d67f-4bc8-ac03-a4587b1aa503",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "277d6a9f-c0ab-4366-ad5a-96beda3c7d4a",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "bad17e8a-c559-4494-bb0b-c5cf0d510f19",
- "inserted_at": "2024-09-03T18:26:34.129864Z",
- "legacy_id": 328486018,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.129893Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.129897Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "4799ed2d-167c-4361-9600-28406359387c"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get team campaign by team slug and campaign slug
Returns a Team Campaign by its team slug and campaign slug
Authorizations:
path Parameters
team_slug required | string Team Slug |
team_campaign_slug required | string Campaign Slug |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "currency_code": "USD",
- "description": "Let's fundraise togehter",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "bb9e441a-3370-4ba0-8ef5-73bf06c7a3e3",
- "inserted_at": "2024-09-03T18:26:34.808478Z",
- "legacy_id": 956672439,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "Our Awesome Team Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.808509Z",
- "retired_at": null,
- "slug": "our-awesome-team-campaign",
- "status": "published",
- "supportable": "none",
- "supporting_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "team": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "1470f78e-f3f3-41ac-b3ee-6e80fc1049fd",
- "legacy_id": 629672320,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}, - "team_id": "ef8300fe-48ea-48e2-8d99-429cfc1c3648",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.808517Z",
}
}
List all Campaigns and Team Campaigns by User ID
Authorizations:
path Parameters
user_id required | string User ID |
query Parameters
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "2df1b815-d67f-4bc8-ac03-a4587b1aa503",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "277d6a9f-c0ab-4366-ad5a-96beda3c7d4a",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "bad17e8a-c559-4494-bb0b-c5cf0d510f19",
- "inserted_at": "2024-09-03T18:26:34.129864Z",
- "legacy_id": 328486018,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2024-09-03T18:26:34.129893Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2024-09-03T18:26:34.129897Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "4799ed2d-167c-4361-9600-28406359387c"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Gets the current user for an access token
Returns a user for a given oauth access token
Authorizations:
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}
}
List teams
Authorizations:
path Parameters
user_id required | string User ID |
query Parameters
role | string Example: role=administrator Returns only teams where a user has a specific role |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "1470f78e-f3f3-41ac-b3ee-6e80fc1049fd",
- "legacy_id": 629672320,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Get by slug
Returns a user by its slug
Authorizations:
path Parameters
slug required | string User slug |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}
}
Get by ID
Returns a user by its ID
Authorizations:
path Parameters
user_id required | string User ID |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "6cc233be-e523-4fad-ab57-d290b574a2e7",
- "legacy_id": 531721921,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}
}
List campaigns
Authorizations:
path Parameters
user_id required | string User ID |
query Parameters
status | string Enum: "published" "retired" Example: status=published Use this parameter to filter campaigns by the given status. |
supporting_type | string Enum: "invite_only" "none" "private" "public" Example: supporting_type=public Use this parameter to filter campaigns by the given supporting type. |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated before the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
Responses
Response samples
- 200
- 401
- 404
- 422
{- "data": [
- {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "1470f78e-f3f3-41ac-b3ee-6e80fc1049fd",
- "legacy_id": 629672320,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}