Contact list

Using CURL

curl \
--location \
--request GET 'https://api.decathlon.net/sports_user/contacts' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <JWT>' \
--header 'x-api-key: <x-api-key>'

Example

{
    "mobile": {
        "value": "0600000000",
        "verified": true,
        "verified_at": "2020-01-01T12:00:00.100+0000",
        "country": "FR"
    },
    "landline": {
        "value": "0320000000",
        "verified": false,
        "verified_at": null,
        "country": "FR"
    },
    "email": {
        "value": "mail@domain.com",
        "verified": true,
        "verified_at": "2020-01-01T12:00:00.500+0000",
        "country": null
    }
}