Skip to content
Download OpenAPI description
Languages
Servers
Mock server
https://docs.goalise.com/_mock/apireference/openapi
Goalise API Server
https://api.goalise.com/api/v2
Operations
Operations
Operations
Operations
Operations
Operations

Request

Returns a paginated list of transfers by team

Security
bearerAuth
Query
team_idintegerrequired

Filter transfers by team ID

Example: team_id=69
pageinteger

Page number

Example: page=1
curl -i -X GET \
  'https://docs.goalise.com/_mock/apireference/openapi/team-transfers?team_id=69&page=1' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Paginated response with transfer items

Bodyapplication/json
statusstring
Example: "success"
paginationobject or null

Pagination info if applicable

errorsobject or null
Example: null
responseArray of objects or null
Response
application/json
{ "status": "success", "pagination": { "total_count": 10, "page_size": 10, "page_count": 1, "current_page": 1 }, "errors": null, "response": [ { … } ] }

Request

Returns a paginated list of transfers for a player

Security
bearerAuth
Query
player_idintegerrequired

Filter transfers by player ID

Example: player_id=8
pageinteger

Page number

Example: page=1
curl -i -X GET \
  'https://docs.goalise.com/_mock/apireference/openapi/player-transfers?player_id=8&page=1' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Paginated response with transfer items

Bodyapplication/json
statusstring
Example: "success"
paginationobject or null

Pagination info if applicable

errorsobject or null
Example: null
responseArray of objects or null
Response
application/json
{ "status": "success", "pagination": { "total_count": 10, "page_size": 10, "page_count": 1, "current_page": 1 }, "errors": null, "response": [ { … } ] }
Operations
Operations
Operations