Skip to main content
GET
/
api
/
zapier
/
getTeam
curl --request GET \
  --url https://api.getmycard.eu/api/zapier/getTeam \
  --header 'Authorization: YOUR_API_KEY'
{
  "success": true,
  "data": {
    "id": 1,
    "name": "Enterprise Name",
    "apiKey": "example_api_key"
  }
}

Authentication

Include your API key in the request’s Authorization header.

Response

success
boolean
Indicates if the request was successful
data
object
Enterprise data object with the following properties:
curl --request GET \
  --url https://api.getmycard.eu/api/zapier/getTeam \
  --header 'Authorization: YOUR_API_KEY'
{
  "success": true,
  "data": {
    "id": 1,
    "name": "Enterprise Name",
    "apiKey": "example_api_key"
  }
}