Payments
Mark payment as paid
Mark a payment as paid with the specified payment form.
gigstack Connect: Mark other teams' payments as paid using the team parameter.
Required Information
- payment_form: SAT-compliant payment form code (01-31, 99)
- date: Optional timestamp when payment was received
post/payments/{id}/paid
Path parameters
idstring required
Query parameters
teamstring
gigstack Connect: Target team ID for multi-team access.
Requires gigstack Connect enabled on your team and shared billing account.
Example: ?team=team_xyz789
Request body
Example request
{
"date": 1677651234,
"payment_form": "03"
}Response
Payment marked as paid successfully
Example response
{
"message": "Operation completed successfully"
}