Get list of Bitrise activity events

GET /me/activities

List all the Bitrise activity events

Query parameters

  • next string

    Slug of the first activity event in the response

  • limit integer

    Max number of elements per page (default: 50)

    Maximum value is 50.

Responses

  • OK

    Hide response attributes Show response attributes object
  • Bad Request

    Hide response attribute Show response attribute object
  • Unauthorized

    Hide response attribute Show response attribute object
  • Not Found

    Hide response attribute Show response attribute object
  • Internal Server Error

    Hide response attribute Show response attribute object
GET /me/activities
curl \
 --request GET 'https://api.bitrise.io/v0.1/me/activities' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "created_at": "string",
      "description": "string",
      "event_icon": "string",
      "event_stype": "string",
      "repository_avatar_icon_url": "string",
      "repository_title": "string",
      "slug": "string",
      "target_path_string": "string",
      "title": "string"
    }
  ],
  "paging": {
    "next": "string",
    "page_item_limit": 42,
    "total_item_count": 42
  }
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}