Skip to content

A set of webhooks to sync users and tenants from Stytch to Permit.io

Notifications You must be signed in to change notification settings

permitio/permit-stytch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Permit <-> Stytch Integrations

This repository contains a collection of webhooks to provision users from Stych authentication service to Permit.io for Fine Grained Authorization.

The webhooks service is Node.js based and is written using the Express.js web framework.

Usage

To properly run the service, follow these steps.

To support multiple webhooks that provide different secrets, the project utilizes a custom header named x-stytch-webhook-secret that contains the environment variable name of the relevant secret. For example, if the header value is SYNC_USER_SECRET, the webhook will look for the SYNC_USER_SECRET environment variable to validate the webhook.

Run the Project

  1. Configure the relevant webhooks in Stytch to point to your server.
  2. Create a .env file, and copy the content from .env.template to it
    cp .env.template .env
    
  3. Replace the PERMIT_API_TOKEN and STYTCH_API_TOKEN with the proper tokens from Permit and Stytch
  4. Add the relevant webhook secrets to the .env file using the same names as the custom header values.
  5. Install the dependencies
    npm install
    
  6. Start the server
    npm start
    
  7. (Optional) If you're running the project locally, you'll probably have to use a proxy service (like https://ngrok.com/) to expose it to Stytch.

You can now check the logs to see if the webhooks are being received and processed correctly. Stytch platform provide a test button to trigger the webhooks for testing.

Supported Flows

The project is currently supported by the following flows to sync users (with roles) and tenants to Permit.

The project utilizes the query parameters of the webhooks to pass configuration for the flows.

Sync User

This hook gets the user from Stych and creating/updating it in Permit.

Webhook URL

https://{YOUR_SERVER_URL}/sync-users{optional_query_parameters}

Supported Stytch events

  • *.user.create - A new user has been created in Stytch
  • *.user.update - An existing user has been updated in Stytch

Optional Params

  • role_assignment = default | tenant - if set will assign the role to a user. In case of tenant the assignment will be done to the organization of the user.
  • create_roles = true - if set to true, it will create the roles if they do not exist.
  • create_tenants = true - if set to true, it will create the tenants if it does not exist.

Sync Tenant - TBD

Delete User - TBD

Delete Tenant - TBD

About

A set of webhooks to sync users and tenants from Stytch to Permit.io

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published