Skip to content

Commit

Permalink
chore(integration-templates): Automated commit updating flows.yaml ba…
Browse files Browse the repository at this point in the history
…sed on changes in NangoHQ/integration-templates@614f8ff by Andres Reales. Commit message: feat(calendly): Add users syncs/actions (#57)
  • Loading branch information
github-actions[bot] committed Oct 17, 2024
1 parent f99852b commit 9aaa546
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions packages/shared/flows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9aaa546

Please sign in to comment.