Connect integration
const url = 'https://kynectlocal-production.up.railway.app/v1/v1/brands/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/integrations';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://kynectlocal-production.up.railway.app/v1/v1/brands/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/integrations \ --header 'Authorization: Bearer <token>'Authorizations
Section titled βAuthorizations βParameters
Section titled β Parameters βPath Parameters
Section titled βPath Parameters βBrand identifier
Responses
Section titled β Responses βSuccess
object
object
object
Integration identifier key (e.g., google_business)
Integration display name
Short description
Integration category
Logo URL
Entitlement required to use this integration
Whether the current brand is entitled to use this integration
Connection status
Connection timestamp
Last verification timestamp
Last error message
Credential field definitions
object
Field key
Human-readable label
Input type (password fields are never returned in plaintext)
Whether this credential field is required
Placeholder text
Documentation URL
Affiliate/partner URL
Navigation label override
Keys of credentials that have been saved
Decrypted values for text-type fields only; password fields are never returned
object
Example
{ "data": { "integration": { "status": "not_connected", "credentialFields": [ { "type": "text" } ] } }}Validation error
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Unauthenticated
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Forbidden
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Not found
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Unprocessable
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}