cURL
curl --request POST \ --url https://www.postable.com/api/v1/auth/login \ --header 'Content-Type: application/json' \ --data ' { "app_id": "my-app", "email": "user@example.com", "password": "your-password" } '
{ "data": { "token": "<string>" } }
Exchange credentials for an API bearer token. This is the only endpoint that does not require authentication.
Identifier for your application (used to manage tokens)
Your Postable account email
Your Postable account password
Authentication successful
Show child attributes