Time zone in api

Mansi Gusain 210 Reputation points
2025-02-19T13:49:14.6766667+00:00

Hi I want to send the time zone also with the email create api and calendar event api this is my schema-

openapi: 3.0.1

info:

title: Atlassian Wiki API

description: API for interacting with Atlassian Wiki pages

version: "1.0.0"

servers:

paths:

/wiki/api/v2/pages:

post:

  summary: Create a new Wiki page

  description: This endpoint allows you to create a new page in the Atlassian Wiki.

  requestBody:

    required: true

    content:

      application/json:

        schema:

          type: object

          properties:

            spaceId:

              type: string

              description: The ID of the space.

            status:

              type: string

              description: The status of the page (e.g., current).

            title:

              type: string

              description: The title of the page.

            body:

              type: object

              properties:

                representation:

                  type: string

                  description: The representation format of the body.

                value:

                  type: string

                  description: The content of the page.

          required:

            - spaceId

            - status

            - title

            - body

  responses:

    '200':

      description: Successful creation of the page

      content:

        application/json:

          schema:

            type: object

            properties:

              id:

                type: string

                description: The ID of the newly created page.

              title:

                type: string

                description: The title of the newly created page.

              status:

                type: string

                description: The status of the newly created page.

    '400':

      description: Bad Request

    '401':

      description: Unauthorized

    '403':

      description: Forbidden

    '404':

      description: Not Found
```Here I do want to set the timezone also can someone please help?

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
13,108 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Saranya Madhu-MSFT 1,650 Reputation points Microsoft Vendor
    2025-02-20T05:37:33.6+00:00

    Hi Mansi Gusain,

    Thanks for reaching out to Microsoft!

    Using the Microsoft Graph API, you can retrieve the supported time zones as configured on the user's mailbox server. To do this, you can use the following endpoint:

    GET /me/outlook/supportedTimeZonesUser's image supportedTimeZones

    Hope this helps.

    If the answer is helpful, please click Accept Answer and kindly upvote. If you have any further questions about this answer, please click Comment.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.