API Requests
To make a REST API request, you combine the HTTP GET, POST, PUT, PATCH, or DELETE method, the URL to the API service, the URI to a resource to query, submit data to, update, or delete, and one or more
curl -v --location --request POST https://sandbox.smartfastpay.com/oauth2/token \
--header 'Accept: application/json' \
--header 'Authorization: Basic <EncodedClientIdClientSecret>' \
--header 'Content-Type: application/json'curl -v --location --request GET 'https://sandbox.smartfastpay.com/transactions' \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <Access-Token>"Query parameters
Parameter
Type
Description
HTTP request headers
Last updated