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

Authorizations

Authorization
string
header
required

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

Body

application/json
applicationId
string
required

Square Application ID for OAuth authentication.

applicationSecret
string
required

Square Application Secret for OAuth authentication.

Response

Success

result
enum<string>

The result of the action performed.

Available options:
SUCCESS,
FAILURE
data
object