Get your profile info

GET /me

Shows the authenticated users profile info

Responses

GET /me
curl \
 --request GET 'https://api.bitrise.io/v0.1/me' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": {
    "avatar_url": "string",
    "created_at": "string",
    "data_id": 42,
    "email": "string",
    "has_used_organization_trial": true,
    "payment_processor": "string",
    "slug": "string",
    "unconfirmed_email": "string",
    "username": "string"
  }
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}