Skip to main content
POST
/
v0
/
user
/
connectors
Connect Service
curl --request POST \
  --url https://api.example.com/v0/user/connectors/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "connector_id": 123,
  "auth_data": {}
}
'
{
  "_links": {
    "kyc": {
      "description": "Submit KYC information",
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me",
      "method": "GET"
    },
    "wallets": {
      "href": "/v0/wallets",
      "method": "GET"
    }
  }
}

Headers

x-sumvin-token
string | null
x-juno-jwt
string | null

Body

application/json
connector_id
integer
required

ID of connector to connect

auth_data
Auth Data · object
required

Authentication credentials

Response

Connector connected successfully

HAL-style hypermedia links for navigation and available actions.

user_connector
UserConnectorData · object
required