Skip to main content
POST
/
auth
/
v1
/
customer
/
search
Error
A valid request URL is required to generate request examples
{
  "data": [
    {
      "id": "customerid",
      "name": "givenName familyName",
      "phoneNumber": "+6141234567890"
    }
  ]
}

Authorizations

Authorization
string
header
required

The Fiskil Data Provider will include a self-signed JWT as a Bearer token in the Authorization header. You should verify this JWT using the JWKS URL you can find for your Data Provider instance in the Fiskil Console. To verify the JWT you must:

  • Verify the signature
  • Ensure the token has not expired by checking the exp claim
  • The sub and iss claims are your data provider subdomain
  • The aud claim is the URI of the resource being requested (excluding any query parameters)
  • The jti value is unique For further detail on security and authentication refer to our Authentication documentation

Body

application/json

email of customer

email
string
required

The email address of the end-user trying to authenticate. The API should return any customers that this end-user is associated with. The user may be the owner of the customer or just an authorized contact. For example, the same email may be associated with an individual customer and a business customer. Both customers should be returned.

Response

200 - application/json

Success

data
object[]
required