action xero_get_connections { label: "Retrieves the connections for this user" description: "Override the base server url that include version" provider: xero method: GET path: "/Connections" encoding: json input: { type: "object" properties: { authEventId: { type: "string" format: "uuid" } } additionalProperties: false } output: { type: "array" items: { properties: { authEventId: { type: "string" format: "uuid" description: "Identifier shared across connections authorised at the same time" } createdDateUtc: { type: "string" format: "date-time" description: "The date when the user connected this tenant to your app" } id: { type: "string" format: "uuid" description: "Xero identifier" } tenantId: { type: "string" format: "uuid" description: "Xero identifier of organisation" } tenantName: { type: "string" description: "Xero tenant name" } tenantType: { type: "string" description: "Xero tenant type (i.e. ORGANISATION, PRACTICE)" } updatedDateUtc: { type: "string" format: "date-time" description: "The date when the user most recently connected this tenant to your app. May differ to the created date if the user has disconnected and subsequently reconnected this tenant to your app." } } } } }