### Retail Express API Request URL Example Source: https://developer.retailexpress.com.au/getting-started Demonstrates how to construct a URL to make a request to a specific version of the Retail Express API. The version is included in the URL path before the endpoint. ```HTTP /v2.1/products.json ``` -------------------------------- ### Retail Express API Authentication Token Response Source: https://developer.retailexpress.com.au/getting-started This snippet shows the JSON response received after successfully authenticating with the Retail Express API. It includes the token type, the access token, and the expiration time. ```JSON { "token_type": "Bearer", "access_token": "eyJhbmdWxsX2FjY2VzcyJdfQ.IWPofNEfIu-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "expires_on": "2021-01-31T23:48:23.4672689+00:00" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.