Realiza a emissão de um ticket.
Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the Bearer. Example:Authorization: Bearer ********************
Body Params application/json
{
"vehicleType": "car",
"plateNumber": "AAA1A11",
"vehicleModel": "Alpine",
"vehicleColor": "silver",
"checkIn": "2025-07-07T00:00:00.000Z"
}
Request Code Samples
curl --location --request POST 'https://partner-api.staging.estaci.one/v1/tickets' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"vehicleType": "car",
"plateNumber": "AAA1A11",
"vehicleModel": "Alpine",
"vehicleColor": "silver",
"checkIn": "2025-07-07T00:00:00.000Z"
}'
Responses
application/json {
"ticketId": "202520092345491571",
"ticketNumber": "202520092345491582",
"checkIn": "2025-02-05T20:32:19.918Z",
"qrCodeContent": "AQgKn9fjzkIQAAIICp_X5DhAB1wDBGgs9wMAEDc6XiP5rl94qtYyPmlhR80"
}
Modified at 2025-07-07 20:38:52