Authentication
Integration Guides
Customer Journey
- Customer API Overview
- 1. Registration
- 2. Authentication
- 3. Verification
- 4. Access Control
- Profile Management
Tenants's Journey
- Group Management
Financial Operations
- Beneficiary Management
Wallet & Payments
- Wallet API
Administration
- Configuration
- Billing
Verify Credentials
Verify a customer’s credentials
POST
/
login
Copy
curl --request POST \
--url https://gateway.finhub.cloud/customer/2.0.0/login \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"credentials": [
{
"credentialType": "email",
"value": "<string>",
"code": "<string>",
"communicationChannel": {
"name": "<string>",
"type": "phone",
"addressUrl": "<string>"
}
}
]
}'
Copy
[
{
"userId": "<string>",
"customerId": "<string>",
"personId": "<string>",
"tenantId": "<string>",
"organizationId": "<string>",
"credentials": [
{
"sessionId": "<string>",
"value": "<string>",
"token": "<string>"
}
],
"twoFaInfo": [
{
"id": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"tenantId": "<string>",
"login": true,
"trading": true,
"funding": true,
"userId": "<string>"
}
]
}
]
Copy
curl --request POST \
--url https://gateway.finhub.cloud/customer/2.0.0/login \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"credentials": [
{
"credentialType": "email",
"value": "<string>",
"code": "<string>",
"communicationChannel": {
"name": "<string>",
"type": "phone",
"addressUrl": "<string>"
}
}
]
}'
Copy
[
{
"userId": "<string>",
"customerId": "<string>",
"personId": "<string>",
"tenantId": "<string>",
"organizationId": "<string>",
"credentials": [
{
"sessionId": "<string>",
"value": "<string>",
"token": "<string>"
}
],
"twoFaInfo": [
{
"id": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"tenantId": "<string>",
"login": true,
"trading": true,
"funding": true,
"userId": "<string>"
}
]
}
]
Assistant
Responses are generated using AI and may contain mistakes.