Update numberplatescans.http to use dynamic variables for API URL, plate, bay ID, and authorization token

This commit is contained in:
Jeppe Bundgaard
2025-12-15 10:30:59 +01:00
parent 06e0f58ce2
commit 761096495a
@@ -1,9 +1,12 @@
### POST /numberplatescans
POST /numberplatescans HTTP/1.1
Host: truckwashdev.maintenancemode.cloud
Authorization: Bearer 2d9cc49436b716c69abb39e152f0024e6a64734d131d77eb4f87b5b5aeb542fd
@plate = {{registration_number_1}}
@bay_id = {{bay_guid_1}}
POST {{api_url}}/numberplatescans
Accept: application/json
Authorization: Bearer {{auth_token_license_plate_scanner}}
Content-Type: application/json
{
"plate": "AB123"
"plate": "{{plate}}",
"bay_id": "{{bay_id}}"
}