it does , thanks so much Kiwi. Now when i try to retrieve my emails, the assistant is not passing anything "Some info will be sent to www.googleapis.com, only do this for sites you trust - Gmail Assistant needs to send this info to www.googleapis.com
{}
"
here is the schema, Any idea why it is not passing info?
{
“openapi”: “3.1.0”,
“info”: {
“title”: “Google APIs”,
“description”: “API for accessing various Google services including Gmail and Google Calendar.”,
“version”: “1.0.0”
},
“servers”: [
{
“url”: “https://www.googleapis.com”
}
],
“paths”: {
“/gmail/messages”: {
“get”: {
“summary”: “List Gmail messages”,
“operationId”: “listGmailMessages”,
“responses”: {
“200”: {
“description”: “A list of Gmail messages”,
“content”: {
“application/json”: {
“schema”: {
“$ref”: “#/components/schemas/MessageList”
}
}
}
}
}
}
},
“/gmail/messages/{messageId}”: {
“get”: {
“summary”: “Get a specific Gmail message”,
“operationId”: “getGmailMessage”,
“parameters”: [
{
“name”: “messageId”,
“in”: “path”,
“required”: true,
“schema”: {
“type”: “string”
}
}
],
“responses”: {
“200”: {
“description”: “Details of a specific message”,
“content”: {
“application/json”: {
“schema”: {
“$ref”: “#/components/schemas/Message”
}
}
}
}
}
}
},
“/calendar/events”: {
“get”: {
“summary”: “List Google Calendar events”,
“operationId”: “listCalendarEvents”,
“responses”: {
“200”: {
“description”: “A list of calendar events”,
“content”: {
“application/json”: {
“schema”: {
“$ref”: “#/components/schemas/EventList”
}
}
}
}
}
}
},
“/calendar/events/{eventId}”: {
“get”: {
“summary”: “Get a specific calendar event”,
“operationId”: “getCalendarEvent”,
“parameters”: [
{
“name”: “eventId”,
“in”: “path”,
“required”: true,
“schema”: {
“type”: “string”
}
}
],
“responses”: {
“200”: {
“description”: “Details of a specific event”,
“content”: {
“application/json”: {
“schema”: {
“$ref”: “#/components/schemas/Event”
}
}
}
}
}
}
}
},
“components”: {
“schemas”: {
“MessageList”: {
“type”: “array”,
“items”: {
“$ref”: “#/components/schemas/Message”
}
},
“Message”: {
“type”: “object”,
“properties”: {
“id”: {
“type”: “string”
},
“subject”: {
“type”: “string”
},
“body”: {
“type”: “string”
}
}
},
“EventList”: {
“type”: “array”,
“items”: {
“$ref”: “#/components/schemas/Event”
}
},
“Event”: {
“type”: “object”,
“properties”: {
“id”: {
“type”: “string”
},
“title”: {
“type”: “string”
},
“start”: {
“type”: “string”,
“format”: “date-time”
},
“end”: {
“type”: “string”,
“format”: “date-time”
}
}
}
}
}
}