Setup Utila integration.
curl --request PUT \
--url https://sandbox-api.borderless.xyz/v1/organizations/integrations/utila \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"serviceAccount": "sa_1234567890abcdef",
"privateRSAKey": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADAN...",
"evmGasWallet": [
"0x1234567890abcdef1234567890abcdef12345678"
]
}
'{
"provider": "<string>",
"integrationNetworkAddresses": [
{
"address": "<string>"
}
]
}Integrations Config
Setup Utila integration.
deprecated
Create Utila integration to configure the connection with the Utila workspace.
PUT
/
v1
/
organizations
/
integrations
/
utila
Setup Utila integration.
curl --request PUT \
--url https://sandbox-api.borderless.xyz/v1/organizations/integrations/utila \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"serviceAccount": "sa_1234567890abcdef",
"privateRSAKey": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADAN...",
"evmGasWallet": [
"0x1234567890abcdef1234567890abcdef12345678"
]
}
'{
"provider": "<string>",
"integrationNetworkAddresses": [
{
"address": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
The Utila service account identifier. Learn more at Utila Configuration Guide.
Example:
"sa_1234567890abcdef"
The Utila private RSA key for authentication. Learn more at Utila Configuration Guide.
Example:
"-----BEGIN PRIVATE KEY-----\nMIIEvQIBADAN..."
The Utila EVM gas wallets for the organization. Learn more at Utila Configuration Guide.
Example:
[
"0x1234567890abcdef1234567890abcdef12345678"
]Was this page helpful?
⌘I