Squads

*FOR MATCHPLAY EVENTS ONLY*

This endpoint returns the list of players that make up a Squad. This squad will represent a list of Player that make up a Team for Team Matches such as Ryder Cup, Presidents Cup & EurAsia Cup.

Endpoint URL

https://dde-api.data.imgarena.com/golf/tournaments/{tournamentId}/squads

Please note that to access an entry list, you will have to enter the tournament ID in the “{id}” field.

Required Headers

Key

Value

Accept

application/vnd.imggaming.dde.api+json;version=1

Content-Type

application/json

Authorization

Bearer eyvhaoudfgpdfgo*

*Authorization header includes a truncated Bearer token, contact IMG for your auth token if you do not have.

Response Model

Squads Object

Field

Type

Description

squadNo

int

number of squad

squadName

string

name of squad

players

Array

Data for all players in the squad

players object

Field

Type

Description

displayName

string

display name of player

country

string

FIFA country code, 3 uppercase letters

isAmateur

string

Is the player an amateur or not. True or False

status

string

Describes current player status in tournament.

lastName

string

Last known name of the Player

firstName

string

First known name of the Player

playerId

int

Unique id of a Player

playerPGATourId

int or null

The unique PGA tour Player Id of that player (if applicable)

playerEuropeanTourId

int or null

The unique European tour Player Id of that player (if applicable)

playerLPGATourId

int or null

The unique LPGA tour Player Id of that player (if applicable)



[
    {
        "squadNo": 1,
        "squadName": "USA",
        "players": [
            {
                "displayName": "Tony Finau",
                "playerPGATourId": "29725",
                "playerEuropeanTourId": "35600",
                "country": "USA",
                "isAmateur": false,
                "lastName": "Tony",
                "firstName": "Finau",
                "status": "Entered",
                "playerId": 2210
                "playerLPGATourId": null
            },
            {
                "displayName": "Tiger Woods",
                "playerPGATourId": "29725",
                "playerEuropeanTourId": "35600",
                "country": "USA",
                "isAmateur": false,
                "lastName": "Tiger",
                "firstName": "Woods",
                "status": "Entered",
                "playerId": 2559
                "playerLPGATourId": null
            },
            {
                "displayName": "Jordan Spieth",
                "playerPGATourId": "29725",
                "playerEuropeanTourId": "35600",
                "country": "USA",
                "isAmateur": false,
                "lastName": "Jordan",
                "firstName": "Spieth",
                "status": "Entered",
                "playerId": 3054
                "playerLPGATourId": null
            },
            {
                "displayName": "Bryson DeChambeau",
                "playerPGATourId": "47959",
                "playerEuropeanTourId": "40617",
                "country": "USA",
                "isAmateur": false,
                "lastName": "Bryson",
                "firstName": "DeChambeau",
                "status": "Entered",
                "playerId": 387
                "playerLPGATourId": null
            },
            {
                "displayName": "Brooks Koepka",
                "playerPGATourId": "36689",
                "playerEuropeanTourId": "38783",
                "country": "USA",
                "isAmateur": false,
                "lastName": "Brooks",
                "firstName": "Koepka",
                "status": "Entered",
                "playerId": 153
                "playerLPGATourId": null
            },
            {
                "displayName": "Justin Thomas",
                "playerPGATourId": "33448",
                "playerEuropeanTourId": "39594",
                "country": "USA",
                "isAmateur": false,
                "lastName": "Justin",
                "firstName": "Thomas",
                "status": "Entered",
                "playerId": 3071
                "playerLPGATourId": null
            }
        ]
    },
    {
        "squadNo": 2,
        "squadName": "Europe",
        "players": [
            {
                "displayName": "Justin Rose",
                "playerPGATourId": "29725",
                "playerEuropeanTourId": "35600",
                "country": "ENG",
                "isAmateur": false,
                "lastName": "Justin",
                "firstName": "Rose",
                "status": "Entered",
                "playerId": 2291
                "playerLPGATourId": null
            },
            {
                "displayName": "Rory McIlroy",
                "playerPGATourId": "29725",
                "playerEuropeanTourId": "35600",
                "country": "NIR",
                "isAmateur": false,
                "lastName": "Rory",
                "firstName": "McIlroy",
                "status": "Entered",
                "playerId": 14
                "playerLPGATourId": null
            },
            {
                "displayName": "Paul Casey",
                "playerPGATourId": "29725",
                "playerEuropeanTourId": "35600",
                "playerPGATourId": "29725",
                "playerEuropeanTourId": "35600",
                "country": "ENG",
                "isAmateur": false,
                "lastName": "Paul",
                "firstName": "Casey",
                "status": "Entered",
                "playerId": 25
                "playerLPGATourId": null
            },
            {
                "displayName": "Francesco Molinari",
                "playerPGATourId": "29725",
                "playerEuropeanTourId": "35600",
                "country": "ITA",
                "isAmateur": false,
                "lastName": "Francesco",
                "firstName": "Molinari",
                "playerId": 32
                "playerLPGATourId": null
            },
            {
                "displayName": "Henrik Stenson",
                "playerPGATourId": "29725",
                "playerEuropeanTourId": "35600",
                "country": "SWE",
                "isAmateur": false,
                "lastName": "Henrik",
                "firstName": "Stenson",
                "status": "Entered",
                "playerId": 276
                "playerLPGATourId": null
            }
        ]
    },

Last updated