Get a List of Calendar Events calendar.event.get

Choose a tool for developing with an AI agent:

  • use Alaio Vibecode to build an app for Bitrix24 from a task description without knowing any programming language. The agent writes the code and deploys the app to a server, with no manual hosting setup
  • use the MCP server to develop a REST API integration in your own project. The agent refers to the official REST documentation

Scope: calendar

Who can execute the method: any user

This method retrieves a list of calendar events.

Method Parameters

Required parameters are marked with *

Name
type

Description

type*
string

Calendar type:

  • user — user calendar
  • group — group calendar
  • company_calendar — company calendar

ownerId*
integer

Identifier of the calendar owner.

For the company calendar, the ownerId parameter is 0

from
date

Start date for the selection.

Default value is one month before the current date

to
date

End date for the selection.

Default value is three months after the current date

section
array

Array of calendar identifiers

Code Examples

How to Use Examples in Documentation

  1. Get user events with id = 1 for the period from 2024-06-20 to 2024-08-20

    curl -X POST \
            -H "Content-Type: application/json" \
            -H "Accept: application/json" \
            -d '{"type":"user","ownerId":1,"from":"2024-06-20","to":"2024-08-20","section":[21,44]}' \
            https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/calendar.event.get
            
    curl -X POST \
            -H "Content-Type: application/json" \
            -H "Accept: application/json" \
            -d '{"type":"user","ownerId":1,"from":"2024-06-20","to":"2024-08-20","section":[21,44],"auth":"**put_access_token_here**"}' \
            https://**put_your_bitrix24_address**/rest/calendar.event.get
            
    BX24.callMethod(
                'calendar.event.get',
                {
                    type: 'user',
                    ownerId: 1,
                    from: '2024-06-20',
                    to: '2024-08-20',
                    section: [21, 44]
                }
            );
            
    from b24pysdk.errors import BitrixAPIError, BitrixSDKException
            
            try:
                bitrix_response = client.calendar.event.get(
                    type="user",
                    owner_id=1,
                    from_date="2024-06-20",
                    to="2024-08-20",
                    section=[
                        21,
                        44,
                    ],
                ).response
                result = bitrix_response.result
                print(result)
            except BitrixAPIError as error:
                print(
                    "Bitrix API error",
                    f"error: {error.error}",
                    f"error_description: {error.error_description}",
                    sep="\n",
                )
            except BitrixSDKException as error:
                print(f"Bitrix SDK error: {error.message}")
            except Exception as error:
                print(f"Unexpected error: {error}")
            
    require_once('crest.php');
            
            $result = CRest::call(
                'calendar.event.get',
                [
                    'type' => 'user',
                    'ownerId' => 1,
                    'from' => '2024-06-20',
                    'to' => '2024-08-20',
                    'section' => [21, 44]
                ]
            );
            
            echo '<PRE>';
            print_r($result);
            echo '</PRE>';
            
    // client and ctx are already created — see the Go SDK section
            res, err := client.Core().Call(ctx, "calendar.event.get", b24.Params{
            	"type":    "user",
            	"ownerId": 1,
            	"from":    "2024-06-20",
            	"to":      "2024-08-20",
            	"section": []int{21, 44},
            }, b24.WithIdempotent())
            if err != nil {
            	return fmt.Errorf("calendar.event.get: %w", err)
            }
            
            // The response arrives as json.RawMessage — unmarshal it
            // into a struct matching the response shape shown below on this page.
            fmt.Printf("%s\n", res.Result)
            
  2. Get events from the Company Calendar.

    curl -X POST \
            -H "Content-Type: application/json" \
            -H "Accept: application/json" \
            -d '{"type":"company_calendar","ownerId":""}' \
            https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/calendar.event.get
            
    curl -X POST \
            -H "Content-Type: application/json" \
            -H "Accept: application/json" \
            -d '{"type":"company_calendar","ownerId":"","auth":"**put_access_token_here**"}' \
            https://**put_your_bitrix24_address**/rest/calendar.event.get
            
    BX24.callMethod(
                'calendar.event.get',
                {
                    type: 'company_calendar',
                    ownerId: 0
                }
            );
            
    from b24pysdk.errors import BitrixAPIError, BitrixSDKException
            
            try:
                bitrix_response = client.calendar.event.get(
                    type="company_calendar",
                    owner_id="",
                ).response
                result = bitrix_response.result
                print(result)
            except BitrixAPIError as error:
                print(
                    "Bitrix API error",
                    f"error: {error.error}",
                    f"error_description: {error.error_description}",
                    sep="\n",
                )
            except BitrixSDKException as error:
                print(f"Bitrix SDK error: {error.message}")
            except Exception as error:
                print(f"Unexpected error: {error}")
            
    require_once('crest.php');
            
            $result = CRest::call(
                'calendar.event.get',
                [
                    'type' => 'company_calendar',
                    'ownerId' => ''
                ]
            );
            
            echo '<PRE>';
            print_r($result);
            echo '</PRE>';
            
    // client and ctx are already created — see the Go SDK section
            res, err := client.Core().Call(ctx, "calendar.event.get", b24.Params{
            	"type":    "company_calendar",
            	"ownerId": "",
            }, b24.WithIdempotent())
            if err != nil {
            	return fmt.Errorf("calendar.event.get: %w", err)
            }
            
            // The response arrives as json.RawMessage — unmarshal it
            // into a struct matching the response shape shown below on this page.
            fmt.Printf("%s\n", res.Result)
            

Response Handling

HTTP status: 200

{
            "result": [
                {
                    "ID": "1265",
                    "PARENT_ID": "1265",
                    "DELETED": "N",
                    "CAL_TYPE": "user",
                    "OWNER_ID": "1",
                    "NAME": "Event Name",
                    "DATE_FROM": "12/11/2024 05:59:00 pm",
                    "DATE_TO": "12/11/2024 06:59:00 pm",
                    "ORIGINAL_DATE_FROM": null,
                    "TZ_FROM": "Europe/Berlin",
                    "TZ_TO": "Europe/Berlin",
                    "TZ_OFFSET_FROM": "7200",
                    "TZ_OFFSET_TO": "7200",
                    "DATE_FROM_TS_UTC": "1733932740",
                    "DATE_TO_TS_UTC": "1733936340",
                    "DT_SKIP_TIME": "N",
                    "DT_LENGTH": 3600,
                    "EVENT_TYPE": null,
                    "CREATED_BY": "1",
                    "DATE_CREATE": "12/05/2024 01:48:41 pm",
                    "TIMESTAMP_X": "12/05/2024 01:48:41 pm",
                    "DESCRIPTION": "Description for event",
                    "PRIVATE_EVENT": "",
                    "ACCESSIBILITY": "free",
                    "IMPORTANCE": "normal",
                    "IS_MEETING": true,
                    "MEETING_STATUS": "H",
                    "MEETING_HOST": "1",
                    "MEETING": {
                        "HOST_NAME": "User Name",
                        "NOTIFY": false,
                        "REINVITE": false,
                        "ALLOW_INVITE": false,
                        "HIDE_GUESTS": false,
                        "MEETING_CREATOR": 1,
                        "LANGUAGE_ID": "de",
                        "MAIL_FROM": ""
                    },
                    "LOCATION": "test location",
                    "REMIND": [
                        {
                        "type": "min",
                        "count": 50
                        }
                    ],
                    "COLOR": "#9dcf00",
                    "RRULE": {
                        "FREQ": "WEEKLY",
                        "BYDAY": {
                        "MO": "MO",
                        "WE": "WE"
                        },
                        "INTERVAL": 1,
                        "UNTIL": "12/24/2024",
                        "~UNTIL": "12/24/2024",
                        "UNTIL_TS": 1734998400
                    },
                    "EXDATE": "11/28/2024;12/05/2024;12/12/2024;12/19/2024;12/26/2024",
                    "DAV_XML_ID": "20241211T155900Z-534185204b362e9be7e261e92ccd9078@b24evo.lan",
                    "G_EVENT_ID": "",
                    "DAV_EXCH_LABEL": "",
                    "CAL_DAV_LABEL": "",
                    "VERSION": "1",
                    "ATTENDEES_CODES": [
                        "U1"
                    ],
                    "RECURRENCE_ID": 1272,
                    "RELATIONS": {
                        "ORIGINAL_RECURSION_ID": 1271,
                        "COMMENT_XML_ID": "EVENT_1271_12/23/2024"
                    },
                    "SECTION_ID": "4",
                    "SYNC_STATUS": null,
                    "UF_CRM_CAL_EVENT": [
                        "CO_1",
                        "L_5"
                    ],
                    "UF_WEBDAV_CAL_EVENT": false,
                    "SECTION_DAV_XML_ID": null,
                    "DATE_FROM_FORMATTED": "Wed Dec 11 2024 17:59:00",
                    "DATE_TO_FORMATTED": "Wed Dec 11 2024 18:59:00",
                    "SECT_ID": "4",
                    "ATTENDEE_LIST": [
                        {
                        "id": 1,
                        "entryId": "1265",
                        "status": "H"
                        }
                    ],
                    "COLLAB_ID": null,
                    "~RRULE_DESCRIPTION": "every week on: Mon, Wed, from 12/11/2024 to 12/24/2024",
                    "attendeesEntityList": [
                        {
                        "entityId": "user",
                        "id": 1
                        }
                    ],
                    "~DESCRIPTION": "Description for event",
                    "~USER_OFFSET_FROM": 7200,
                    "~USER_OFFSET_TO": 7200
                },
                {
                    "ID": "1221",
                    ...
                }
            ],
            "time": {
                "start": 1733412607.646361,
                "finish": 1733412607.956879,
                "duration": 0.3105177879333496,
                "processing": 0.0637059211730957,
                "date_start": "2024-12-05T15:30:07+00:00",
                "date_finish": "2024-12-05T15:30:07+00:00"
            }
        }
        

Returned Data

Name
type

Description

result
object

Object with event fields

ID
string

Event identifier

PARENT_ID
string

Identifier of the parent event

DELETED
string

Flag indicating whether the event is deleted. Possible values:

  • Y — event is deleted
  • N — event is not deleted

CAL_TYPE
string

Type of calendar in which the event is located

OWNER_ID
string

Identifier of the calendar owner:

  • id of the user for the calendar type user
  • id of the group for the calendar type group

NAME
string

Event name

DATE_FROM
datetime

Start date of the event

DATE_TO
datetime

End date of the event

ORIGINAL_DATE_FROM
datetime

Start date of the original event for recurring events

TZ_FROM
string

Timezone of the event start date

TZ_TO
string

Timezone of the event end date

TZ_OFFSET_FROM
string

Time offset of the event start time relative to UTC in seconds

TZ_OFFSET_TO
string

Time offset of the event end time relative to UTC in seconds

DATE_FROM_TS_UTC
string

Start date and time of the event in UTC in timestamp format

DATE_TO_TS_UTC
string

End date and time of the event in UTC in timestamp format

DT_SKIP_TIME
string

Flag indicating that the event lasts all day. Possible values:

  • Y — all day
  • N — not all day

DT_LENGTH
integer

Duration of the event in seconds

EVENT_TYPE
string

Type of event

CREATED_BY
string

Identifier of the user who created the event

DATE_CREATE
datetime

Date the event was created

TIMESTAMP_X
datetime

Date the event was modified

DESCRIPTION
string

Description of the event

PRIVATE_EVENT
string

Mark indicating that the event is private. Possible values:

  • Y — private
  • N — not private

ACCESSIBILITY
string

Availability of event participants

IMPORTANCE
string

Importance of the event

IS_MEETING
boolean

Indicator of a meeting with event participants. Possible values:

  • Y — meeting with participants
  • N — meeting without participants

MEETING_STATUS
string

Status of participation in the event. Possible values:

  • Y — accepted
  • N — declined
  • Q — invited but not yet responded
  • H — event organizer

MEETING_HOST
string

Identifier of the user hosting the event

MEETING
object

Object describing meeting settings

LOCATION
string

Identifier or name of the event location

REMIND
array

Array of objects describing event reminders

COLOR
string

Background color of the event

RRULE
object

Recurrence of the event in the form of an object in terms of the iCalendar standard

EXDATE
string

List of exception dates from the recurrence rule

DAV_XML_ID
string

Synchronization identifier

G_EVENT_ID
string

Synchronization identifier

CAL_DAV_LABEL
string

Synchronization identifier

VERSION
string

Version of event changes

ATTENDEES_CODES
array

Identifiers of event participants

RECURRENCE_ID
string

Identifier of the original event when editing only the current one

RELATIONS
object

Object for recurring events with information about relationships to the original event

SECTION_ID
string

Identifier of the calendar in which the event is located

SYNC_STATUS
string

Synchronization status of the event

UF_CRM_CAL_EVENT
array

Array of identifiers of CRM objects linked to the event

UF_WEBDAV_CAL_EVENT
array

Array of identifiers of files linked to the event

SECTION_DAV_XML_ID
array

Synchronization identifier of the event calendar

DATE_FROM_FORMATTED
string

Formatted start date of the event

DATE_TO_FORMATTED
string

Formatted end date of the event

SECT_ID
string

Identifier of the calendar in which the event is located

ATTENDEE_LIST
array

Array of objects describing event participants and their participation statuses. The structure of the object is described below

COLLAB_ID
integer

Identifier of the collaboration in which the event was created

~RRULE_DESCRIPTION
string

Text description of the event recurrence rule

attendeesEntityList
array

Array of objects describing users — event participants

~DESCRIPTION
string

Description of the event

~USER_OFFSET_FROM
integer

Time offset of the event start time relative to the current user's timezone

~USER_OFFSET_TO
integer

Time offset of the event end time relative to the current user's timezone

MEETING Object

Name
type

Description

HOST_NAME
string

Name of the user hosting the event

NOTIFY
boolean

Flag for notifying about confirmation or decline of participants

REINVITE
boolean

Flag for requesting re-confirmation of participation when editing the event

ALLOW_INVITE
boolean

Flag allowing participants to invite others to the event

HIDE_GUESTS
boolean

Flag for hiding the list of participants

MEETING_CREATOR
integer

Identifier of the event creator

LANGUAGE_ID
string

Language identifier for event notifications

MAIL_FROM
string

Sender's address for notifications

REMIND Object

Name
type

Description

type
string

Time type of the reminder

  • min — minutes
  • hour – hours
  • day — days

count
integer

Numerical value of the time interval

RRULE Object

Name
type

Description

FREQ
string

Frequency of recurrence

  • DAILY — daily
  • WEEKLY — weekly
  • MONTHLY — monthly
  • YEARLY — yearly

BYDAY
object

Days of the week

  • SU — Sunday
  • MO — Monday
  • TU — Tuesday
  • WE — Wednesday
  • TH — Thursday
  • FR — Friday
  • SA — Saturday

INTERVAL
integer

Interval between recurrences

UNTIL
date

End date of recurrences

~UNTIL
date

End date of recurrences. Technical field

UNTIL_TS
integer

End date of recurrences in timestamp format

RELATIONS Object

Name
type

Description

ORIGINAL_RECURSION_ID
integer

Identifier of the original event for recurring events created when editing

COMMENT_XML_ID
string

Identifier of the original event for single events created when editing from recurring ones

ATTENDEE_LIST Objects

Name
type

Description

id
integer

Identifier of the user

entryId
string

Identifier of the event

status
string

Status of the event participant. Possible values:

  • Y — accepted
  • N — declined
  • Q — invited but not yet responded
  • H — event organizer

attendeesEntityList Object

Name
type

Description

entityId
string

Event participant object type

id
integer

Identifier of the event participant

Error Handling

HTTP status: 400

{
            "error": "",
            "error_description": "Mandatory parameter not specified \"type\" for the method \"calendar.event.get\""
        }
        

Name
type

Description

error
string

String error code. It consists of digits, Latin letters, and underscores. It may arrive empty — in that case only error_description shows the reason

error_description
string

Error message for the developer. Do not show it to the end user without processing

Possible Error Codes

Code

Error message

Description

empty string

Required parameter "type" is not specified for method "calendar.event.get"

Required parameter type not provided

empty string

Access denied

Access to the method is prohibited for external users

Statuses and System Error Codes

HTTP Status: 4xx, 5xx

The errors described below are returned by the REST API itself, not by the logic of a specific method. They can arrive in response to any method.

Status

Code
Error Message

Description

500

INTERNAL_SERVER_ERROR
Internal server error

An internal server error has occurred. Retry the call, and if the error persists, contact the server administrator or Bitrix24 technical support

500

ERROR_UNEXPECTED_ANSWER
Server returned an unexpected response

The server returned an unexpected response. Retry the call, and if the error persists, contact the server administrator or Bitrix24 technical support

503

QUERY_LIMIT_EXCEEDED
Too many requests

The request intensity limit has been exceeded

429

OPERATION_TIME_LIMIT
Method is blocked due to operation time limit

The method is blocked because the request resource intensity limit has been exceeded. The block is lifted automatically once the accumulated execution time of the method no longer exceeds the limit

401

NO_AUTH_FOUND
Wrong authorization data

The request contains no authorization data: neither an access token nor a webhook code was passed

401

INVALID_REQUEST
Https required

Methods are called over the HTTPS protocol only

401

OVERLOAD_LIMIT
REST API is blocked due to overload

The REST API is blocked due to overload. This is a manual individual block. To have it lifted, contact Bitrix24 technical support

401

ACCESS_DENIED
REST is available only on commercial plans

REST API access is not active for this account. In Bitrix24 Cloud, check the current plan or trial status: Vibe+ plans include REST API access, while Essentials plans do not. A webhook receives a different error message — REST is available only by subscription

401

INVALID_CREDENTIALS
Invalid request credentials

No active webhook with the specified user identifier and secret code was found

404

ERROR_METHOD_NOT_FOUND
Method not found!

No method with this name was found. The name is misspelled, the method does not exist in the REST API, or it is unavailable without the required scope

401

insufficient_scope
The request requires higher privileges than provided by the webhook token

The request requires broader permissions than the token has: for a webhook these are the permissions granted to it, for an application it is the scope. For an application, the error message ends with provided by the access token

401

expired_token
The access token provided has expired

The access token has expired

401

user_access_error
The user does not have access to the application

The application is installed, but the Bitrix24 administrator has granted access to it only to specific users

403

PORTAL_DELETED
Portal was deleted

The public part of the site is closed. To open it on an on-premise installation, disable the "Temporary closure of the public part of the site" option. Path to the setting: Desktop > Settings > Product Settings > Module Settings > Main Module > Temporary closure of the public part of the site