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?