curl --request POST \
--url https://app.narrativebanking.com/api/auth/login \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "user@example.com",
"password": "<password>"
}
'{
"accessToken": "jwt.access.token",
"refreshToken": "jwt.refresh.token",
"userId": "1005",
"tenantId": "2001"
}curl --request POST \
--url https://app.narrativebanking.com/api/auth/login \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "user@example.com",
"password": "<password>"
}
'{
"accessToken": "jwt.access.token",
"refreshToken": "jwt.refresh.token",
"userId": "1005",
"tenantId": "2001"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.