⛑️ Request Headers
Include the following headers in your request:
parameter | description |
---|---|
accept | application/json - Specifies the desired response format as JSON. |
Content-Type | multipart/form-data - Indicates that the request payload is in multipart form data format. |
An example of the request header with an endpoint and an API key.
curl -X 'POST' \
'http://localhost:3002/api/receipt/v1/verbose/file' \
-H 'accept: application/json' \
-H 'apikey: YOUR_API_KEY' \
-H 'Content-Type: multipart/form-data' \
Updated 3 months ago