Register Hub
Register a new hub within your Fivetran account.
Request schema
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Request
fingerprint
string
Installation fingerprint.
example:
port
integer
Installation port.
format:
example:
hub_server_url
string
URL of Hub server.
example:
Http + 1.1
POST
https://api.fivetran.com/v1/hvr/register-hub
POST /v1/hvr/register-hub HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Content-Type: application/json
Host: api.fivetran.com
Content-Length: 94
{
"fingerprint": "fingerprint_value",
"port": 1234,
"hub_server_url": "hub_server_url"
}
Responses
200
Successful response
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
access_token
string
Access token.
example:
registration_id
string
Registration identifier.
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"access_token": "access_token_value",
"registration_id": "registration_id"
}
}