API Documentation
APIs
- GETGet all accounts
- POSTCreate a new account
- GETGet current balances for a given denomination for an account
- GETGet a single account
- PUTEdit an account information
- POSTAdd Balance To User's Account
- PUTModify Automatic Refill Parameters for Account
- GETGet transactions for account
- POSTMid-month modification of monthly auto-refill
- POSTPush Events
- GETGet webhooks
- POSTCreate a new webhook
- DELDelete webhook
- GETGet User Info by User ID
- PATCHUpdate a user
- POSTCreate New User
- POSTCreate Company Plan
APIs
Create New User
Create a new user.
POST
/
v1
/
users
Copy
Ask AI
curl --request POST \
--url https://api.gofermata.com/v1/users \
--header 'Content-Type: application/json' \
--data '{
"name": "Joe Smith",
"email": "joe@gofermata.com",
"password": "something"
}'
Copy
Ask AI
{
"id": 12,
"firstName": "Bob",
"lastName": "Fellow",
"email": "bob.fellow@gmail.com",
"dateOfBirth": "1996-08-24",
"emailVerified": false,
"createDate": "2020-11-18"
}
Body
application/json
Post the necessary fields for the API to create a new user.
The body is of type object
.
Response
200
application/json
User Created
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.gofermata.com/v1/users \
--header 'Content-Type: application/json' \
--data '{
"name": "Joe Smith",
"email": "joe@gofermata.com",
"password": "something"
}'
Copy
Ask AI
{
"id": 12,
"firstName": "Bob",
"lastName": "Fellow",
"email": "bob.fellow@gmail.com",
"dateOfBirth": "1996-08-24",
"emailVerified": false,
"createDate": "2020-11-18"
}
Assistant
Responses are generated using AI and may contain mistakes.