Skip to main content
POST
/
v6
/
closing
Save closing
curl --request POST \
  --url https://sandbox.tight.com/v6/closing \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "date": "2025-12-31",
  "modifications": "DISABLED"
}
'
{
  "result": "SUCCESS",
  "data": {
    "date": "2025-12-31",
    "modifications": "DISABLED"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, see Authentication for more detail.

Body

application/json
date
string<date>

The closing date

Example:

"2025-12-31"

modifications
enum<string>

How modifications to transactions dated on or before the closing date are handled

Available options:
DISABLED,
ENABLED_WITH_WARNING
Example:

"DISABLED"

Response

Success

result
enum<string>

The result of the action performed.

Available options:
SUCCESS,
FAILURE
data
object

The data generated by the action performed.