Skip to main content
GET
/
v1
/
banking
/
customer
/
{customerId}
/
payees
/
{payeeId}
Error
A valid request URL is required to generate request examples
{
  "data": {
    "payeeId": "c9467d0d-4263-428d-9679-8424a48c47b0",
    "nickname": "P Sherman",
    "description": "My favourite dentist",
    "type": "DOMESTIC",
    "creationDate": "2025-01-20T00:00:00.000Z",
    "payeeUType": "domestic",
    "domestic": {
      "payeeAccountUType": "account",
      "account": {
        "accountName": "Peter Sherman",
        "bsb": 111222,
        "accountNumber": 12345678
      }
    }
  }
}

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

Path Parameters

customerId
string
required

Unique ID of a customer. This ID must not change for the lifecycle of the customer

payeeId
string
required

The ID used to locate the details of a particular payee

Response

Details of the requested payee

data
object
required