Realiza o Parse do QrCode para obter o Ticket Number.
Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the Bearer. Example:Authorization: Bearer ********************
Body Params application/json
{
"qrCode": "AQgKn4qx0QQgAAIICp-Ksi1ABPEDBGgs0icAEOtLObuq_ZjuXTRoi1MsOHE"
}
Request Code Samples
curl --location --request POST 'https://partner-api.staging.estaci.one/v1/tickets/parse-qr-code' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"qrCode": "AQgKn4qx0QQgAAIICp-Ksi1ABPEDBGgs0icAEOtLObuq_ZjuXTRoi1MsOHE"
}'
Responses
application/json {
"ticketNumber": "765482959544255729",
"checkIn": "2025-05-20T19:04:07.000000Z"
}
Modified at 2025-05-21 01:56:29