Skip to main content
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": [
    {
      "network": "POLYGON",
      "address": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
serviceAccount
string
required

The Utila service account identifier. Learn more at Utila Configuration Guide.

Example:

"sa_1234567890abcdef"

privateRSAKey
string
required

The Utila private RSA key for authentication. Learn more at Utila Configuration Guide.

Example:

"-----BEGIN PRIVATE KEY-----\nMIIEvQIBADAN..."

evmGasWallet
string

The Utila EVM gas wallets for the organization. Learn more at Utila Configuration Guide.

Example:
[
"0x1234567890abcdef1234567890abcdef12345678"
]

Response

202 - application/json

Organization Utila integration data

provider
string
required
integrationNetworkAddresses
object[]