cURL
curl --request POST \ --url https://api-demo.bridgepo.com/identity/Auth/SignIn \ --header 'Content-Type: application/json' \ --data ' { "email": "sponsor@example.com", "password": "your-password" } '
{ "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." }
Authenticate and receive a JWT access token.
Your iQpay-assigned username/email.
"sponsor@example.com"
Your iQpay-assigned password.
"your-password"
Successfully authenticated. Returns a JWT token.
JWT Bearer token to use in the Authorization header.
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Was this page helpful?