Create Connector Authentication
Create Connector authentication in your own SaaS product for Locoia Connectors.
To integrate Connector authentication in your own SaaS product as part of a multi-tenant flow, follow the below steps.
Create authentication
POST https://api.locoia.com/v1/connector-auths
The uuid4 can be received by making a GET against the connector /v1/connectors?filter=name,like,%22%25ft%25%22 where `ftp` is the connector name.
To use this authentication in a white label flow, pass it's uuid4 you receive in the response as part of the query string. So ideally, after creating, you store it on your customer's account or company object in order to use it for all automation flows.
Update authentication
To update, PUT /v1/connector-auths/**uuid4**
Get authentication information
To list all auth, To update, PUT /v1/connector-auths/
To GET one: /v1/connector-auths/**uuid4**
Delete authentication
DELETE: /v1/connector-auths/**uuid4**
Limiting access via permissions
You can easily limit the permissions of connector auth e.g. for only one user to be visible in order make storing most secure.
Last updated