Core Properties
List of properties used to configure the basic functionalities of your connector.
name
The name property is unique to your connector and serve as the key for all future operations. Once set and published, consider this property immutable. It can only contain letters, numbers, dashes and underscores.
{
"name": "awesomeConnector"
}
baseUrl
The URL at which your connector can be found.
This property is only useful if you're planning on hosting your connector yourself. If you're planing on deploying your connector on Unito's cloud, leave empty.
{
"baseUrl": "https://my.awesome.connector.com"
}
graphRelativeUrl
The path at which your connector's graph can be found. When fetching
item, Unito will append this graphRelativeUrl
to your baseUrl
. Defaults to /
.
{
"graphRelativeUrl": "/graph"
}
credentialAccountRelativeUrl
The path at which Unito can fetch more information on the currently logged in user.
Unito will append this credentialAccountRelativeUrl
to your baseUrl
. Defaults to /me
.
{
"credentialAccountRelativeUrl": "/me"
}