Skip to main content
Sign In
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..."
}
Credentials (email and password) are provided by the iQpay team during onboarding. Contact your iQpay representative if you have not received them.

Body

application/json
email
string
required

Your iQpay-assigned username/email.

Example:

"sponsor@example.com"

password
string
required

Your iQpay-assigned password.

Example:

"your-password"

Response

Successfully authenticated. Returns a JWT token.

token
string

JWT Bearer token to use in the Authorization header.

Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."