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@5d68ba9 by Andres Reales. Commit message: feat(perimeter81): Add users endpoints to Perimeter81 integration (#81)
  • Loading branch information
github-actions[bot] committed Oct 31, 2024
1 parent dedb89d commit 0be1df6
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions packages/shared/flows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5620,6 +5620,55 @@ integrations:
DocumentInput:
threadId: string
attachmentId: string
perimeter81:
actions:
create-user:
description: Creates a user in Perimeter81
input: Perimeter81CreateUser
endpoint: POST /users
output: User
delete-user:
description: Deletes a user in Perimeter81
endpoint: DELETE /users
output: SuccessResponse
input: IdEntity
syncs:
users:
description: |
Fetches the list of users from Perimeter81
endpoint: GET /users
sync_type: full
track_deletes: true
runs: every day
output: User
models:
IdEntity:
id: string
SuccessResponse:
success: boolean
User:
id: string
email: string
firstName: string
lastName: string
CreateUser:
firstName: string
lastName: string
email: string
Perimeter81CreateUser:
firstName: string
lastName: string
email: string
idpType?: string
accessGroups?: string[]
emailVerified?: boolean
inviteMessage?: string
origin?: string
profileData?:
roleName?: string
phone?: string
icon?: string
origin?: string
pipedrive:
syncs:
activities:
Expand Down

0 comments on commit 0be1df6

Please sign in to comment.