Skip to main content
POST
/
v6
/
config
/
integrations
/
salsa
Configure Salsa
curl --request POST \
  --url https://sandbox.tight.com/v6/config/integrations/salsa \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sandboxApiToken": "<string>",
  "productionApiToken": "<string>"
}
'
{
  "result": "SUCCESS",
  "data": {
    "sandboxApiToken": "<string>",
    "productionApiToken": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is a partner-level token.

Body

application/json
sandboxApiToken
string
required

Salsa API Token for sandbox environment testing.

productionApiToken
string
required

Salsa API Token for production environment.

Response

Success

result
enum<string>

The result of the action performed.

Available options:
SUCCESS,
FAILURE
data
object