List all Wallets in a Project
To retrieve and list all wallets in a project, send a GET request to the /wallet/<project_name>/wallets
endpoint.
List all wallets in a project
GET
https://api.playfix.io/wallet/<project_name>/wallets
Path Parameters
project_name*
String
The name
of the project that contains the wallet. It begins with "project/
" followed by a ULID.
Example: projects/01gfav9m1c4zd6eq154th2pafz
Query Parameters
pageToken
String
Page token for next page. You can get this value from the nextPageToken
field of a previous response.
pageSize
String
Max number of projects to return in a single page. Each response will contain one page. This can be any number from 1 to 100.
Headers
Authorization*
String
Bearer <your_access_token>
Example cURL API Call
Example Python API
Response
Response Fields
projectWallets
: An array of objects. Each object contains the details of each wallet in a project.nextPageToken
: A string that enable you to query the next page if you have multiple wallets.
Use the nextPageToken
as the value of the pageToken
query parameter to view the next page of results if you have created more than 10 wallets in a project.
Also, you can set the pageSize
query parameter to a number between 1 and 100 to increase the default number of tokens returned per page.
Example cURL API Call
Example Python API Call
Last updated