HVR Registration Management BETA
Our REST API supports the following HVR registration management actions:
Register a new hub
Register a new hub system with your Fivetran account.
Request
POST https://api.fivetran.com/v1/hvr/register-hub
{
"fingerprint": "string",
"port": int,
"hub_server_url": "string"
}
Payload parameters
Name | Description |
---|---|
fingerprint (required) | The installation fingerprint. |
port (required) | The installation port. |
hub_server_url (required) | The hub server URL. |
Response
HTTP 200 OK
{
"code": "Success",
"data": {
"access_token": "string",
"registration_id": "string"
}
}
Name | Description |
---|---|
access_token | The access token. |
registration_id | The registration identifier. |
HTTP 400 BAD REQUEST
An installation with these parameters has already been created.