Skip to main content
GET
/
api
/
v2
/
savings
/
{id}
Get savings account
curl --request GET \
  --url https://sandbox.killb.app/api/v2/savings/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "PENDING",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required

Response

id
string<uuid>
required
userId
string<uuid>
required
status
enum<string>
required
Available options:
PENDING,
COMPLETED,
REJECTED
createdAt
string<date-time>
required
updatedAt
string<date-time>
required