Core Resources
Banking Api
Energy Api
Common api
An object that represents your User, End User's are used for linking accounts.
End User Endpoints
Retrieves an end user object.
An End Users email address. This should be their primary email, as it is used for notifying the End User about their consents.
A unique identifier for the End User object.
An End Users name.
An End Users Phone. It is used for notifying the End User about their consents.
{
"email": "john_starmer@gmail.com",
"id": "482c0e2b-5866-46b1-b795-220b7bba45b5",
"name": "John Starmer",
"phone": "+614123456789"
}
/v1/end-users
Get end user using email ID.
Email address to filter end users by
curl --request GET \
--url https://api.fiskil.com/v1/end-users?email={email} \
--header 'Authorization: Bearer {access_token}' \
--header 'accept: application/json; charset=UTF-8' \
--header 'content-type: application/json; charset=UTF-8'
[
{
"email": "john_starmer@gmail.com",
"id": "482c0e2b-5866-46b1-b795-220b7bba45b5",
"name": "John Starmer",
"phone": "+614123456789"
},
{
"email": "john_starmer@gmail.com",
"id": "482c0e2b-5866-46b1-b795-220b7bba45b5",
"name": "John Starmer",
"phone": "+614123456789"
},
{
"email": "john_starmer@gmail.com",
"id": "482c0e2b-5866-46b1-b795-220b7bba45b5",
"name": "John Starmer",
"phone": "+614123456789"
},
{
"email": "john_starmer@gmail.com",
"id": "482c0e2b-5866-46b1-b795-220b7bba45b5",
"name": "John Starmer",
"phone": "+614123456789"
}
]
/v1/end-users
Create a new End User for linking accounts.
Australian Business Number (ABN) of the end user if they represent a business
An End Users email address. This should be their primary email, as it is used for notifying the End User about their consents.
Name of the end user
An End Users Phone number in E.164 format
curl --request POST \
--url https://api.fiskil.com/v1/end-users \
--header 'Authorization: Bearer {access_token}' \
--header 'accept: application/json; charset=UTF-8' \
--header 'content-type: application/json; charset=UTF-8' \
--data '
{
"abn": "51 824 753 556",
"email": "john_starmer@gmail.com",
"name": "John Starmer",
"phone": "+614123456789"
}
'
{
"end_user_id": "83064af3-bb81-4514-a6d4-afba340825cd"
}
/v1/end-users/{id}
Deletes an existing End User for linking accounts.
The id of the end user to delete.
curl --request DELETE \
--url https://api.fiskil.com/v1/end-users/{id} \
--header 'Authorization: Bearer {access_token}' \
--header 'accept: application/json; charset=UTF-8' \
--header 'content-type: application/json; charset=UTF-8'
/v1/end-users/{id}
Gets details of an end user by ID
ID of the end user to fetch.
curl --request GET \
--url https://api.fiskil.com/v1/end-users/{id} \
--header 'Authorization: Bearer {access_token}' \
--header 'accept: application/json; charset=UTF-8' \
--header 'content-type: application/json; charset=UTF-8'
{
"email": "john_starmer@gmail.com",
"id": "482c0e2b-5866-46b1-b795-220b7bba45b5",
"name": "John Starmer",
"phone": "+614123456789"
}
Was this page helpful?