POST
/
v0
/
business
/
{business_id}
/
transactions
curl --request POST \
  --url https://api.sandbox.getasset.com/v0/business/{business_id}/transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "description": "<string>",
    "transaction_datetime": "2023-11-07T05:31:56Z",
    "amount": 123,
    "transaction_id": "<string>",
    "linked_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "metadata_": {}
  }
]'
"<any>"

Authorizations

Authorization
string
header
required

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

Path Parameters

business_id
string
required

Body

application/json · object[]
description
string
required

The description of the Transaction

transaction_datetime
string
required

The datetime the Transaction was created in UTC ISO-8601 format

amount
required

The amount of the Transaction

transaction_id
string
required

A value that uniquely identifies the Transaction

linked_account_id
string
required

The ID of the Linked Account associated with the Transaction

metadata_
object | null

The metadata of the Transaction

Response

202
application/json
Successful Response

The response is of type any.