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@9ffe0c9 by Khaliq. Commit message: feat(aircall): add user operations (#77)
  • Loading branch information
github-actions[bot] committed Oct 28, 2024
1 parent cd16e83 commit bec4a16
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion packages/shared/flows.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,39 @@
integrations:
aircall-basic:
actions:
create-user:
description: Creates a user in Aircall.
output: User
endpoint: POST /users
input: CreateUser
delete-user:
description: Deletes a user in Aircall
endpoint: DELETE /users
output: SuccessResponse
input: IdEntity
syncs:
users:
runs: every day
description: |
Fetches a list of users from Aircall.
output: User
track_deletes: true
sync_type: full
endpoint: GET /users
models:
SuccessResponse:
success: boolean
IdEntity:
id: string
User:
id: string
email: string
firstName: string
lastName: string
CreateUser:
firstName: string
lastName: string
email: string
airtable:
syncs:
tables:
Expand Down Expand Up @@ -1996,7 +2031,7 @@ integrations:
description?: string
ExactInvoiceCreateInput:
customerId: string
journal: number
journal?: number
currency?: EUR
description?: string
createdAt?: date
Expand Down

0 comments on commit bec4a16

Please # to comment.