This unauthenticated endpoint is used to get the JWT (valid for one day) that must be used in the header of every other request.
cURL
curl --request POST \ --url https://partner.staging.ezprk.dev/login \ --header 'Content-Type: application/json' \ --data ' { "refreshToken": "<string>" } '
{ "idToken": "<string>", "validUntilDate": "2023-11-07T05:31:56Z" }
The JWT and the expiration date and time.