From 9aaa546049e77f24a9052b101283322c3076255d Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Thu, 17 Oct 2024 18:39:40 +0000 Subject: [PATCH] chore(integration-templates): Automated commit updating flows.yaml based on changes in https://github.com/NangoHQ/integration-templates/commit/614f8ff85ebda5d79d3b46258834ba1ddbbe74d1 by Andres Reales. Commit message: feat(calendly): Add users syncs/actions (#57) --- packages/shared/flows.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/packages/shared/flows.yaml b/packages/shared/flows.yaml index ea11ace4aa..ae168fb363 100644 --- a/packages/shared/flows.yaml +++ b/packages/shared/flows.yaml @@ -889,7 +889,40 @@ integrations: endpoint: GET /event/invitees output: EventInvitee description: For all events (active and canceled) retrieve the event invitees + users: + runs: every day + description: Fetches a list of users from Calendly + output: User + track_deletes: true + sync_type: full + endpoint: GET /users + actions: + create-user: + description: Creates a user in Calendly + endpoint: POST /users + output: User + input: CreateUser + scopes: + - admin + delete-user: + description: Deletes a user in Calendly + endpoint: DELETE /users + output: SuccessResponse + input: IdEntity + scopes: + - admin models: + IdEntity: + id: string + SuccessResponse: + success: boolean + User: + id: string + email: string + firstName: string + lastName: string + CreateUser: + email: string Event: id: string uri: string