v1

latestOpenAPI 3.0.3Proprietaryraw.githubusercontent.com2026-03-067260437.0 KB
Receipts

Stamp receipt

Convert a receipt into a CFDI invoice by stamping it with SAT.

Stamp Options:

  • client: Stamp to the associated client
  • general_public_national: Stamp to Mexican general public
  • general_public_foreign: Stamp to foreign general public

gigstack Connect: Stamp other teams' receipts using the team parameter.

post/receipts/{id}/stamp

Path parameters

idstring required

Receipt ID

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

stamp_to'client' | 'general_public_national' | 'general_public_foreign' required

Who to stamp the receipt to

datenumber nullable

Custom invoice date (timestamp in milliseconds)

Example request

{
  "stamp_to": "client",
  "fiscal_information": {
    "legal_name": "Juan Pérez García",
    "tax_id": "PEGJ800101ABC",
    "tax_system": "601",
    "zip": "01000"
  },
  "date": 1677651234000
}

Response

Receipt stamped successfully

messagestring required
dataobject required

Example response

{
  "message": "Operation completed successfully"
}