Skip to content

List

List management operations
get/v1/management_operations

List management operations

Query Parameters
beginstring
optional

Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.

formatdate-time
business_account_tokenstring
optional
formatuuid
categoryenum
optional
Accepts one of the following: "MANAGEMENT_FEE", "MANAGEMENT_DISPUTE", "MANAGEMENT_REWARD", 2 more

Management operation category to be returned.

Hide ParametersShow Parameters
"MANAGEMENT_FEE"
"MANAGEMENT_DISPUTE"
"MANAGEMENT_REWARD"
"MANAGEMENT_ADJUSTMENT"
"MANAGEMENT_DISBURSEMENT"
endstring
optional

Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.

formatdate-time
ending_beforestring
optional

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

financial_account_tokenstring
optional

Globally unique identifier for the financial account. Accepted type dependent on the program's use case.

formatuuid
page_sizenumber
optional

Page size (for pagination).

maximum100
minimum1
starting_afterstring
optional

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

statusenum
optional
Accepts one of the following: "PENDING", "SETTLED", "DECLINED", 2 more

Management operation status to be returned.

Hide ParametersShow Parameters
"PENDING"
"SETTLED"
"DECLINED"
"REVERSED"
"CANCELED"
Returns
dataarray of tokenstringcategoryenumcreatedstringcurrencystringdirectionenumeventsarray of objectfinancial_account_tokenstringpending_amountnumberresultenumsettled_amountnumberstatusenumtransaction_seriesobjectupdatedstringuser_defined_idstringManagementOperationTransaction
has_moreboolean
Request example Request
curl https://api.lithic.com/v1/management_operations \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "data": [
    {
      "token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "category": "MANAGEMENT_FEE",
      "created": "2019-12-27T18:11:19.117Z",
      "currency": "currency",
      "direction": "CREDIT",
      "events": [
        {
          "token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
          "amount": 0,
          "created": "2019-12-27T18:11:19.117Z",
          "detailed_results": [
            "APPROVED"
          ],
          "effective_date": "2019-12-27",
          "memo": "memo",
          "result": "APPROVED",
          "type": "LOSS_WRITE_OFF",
          "subtype": "subtype"
        }
      ],
      "financial_account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "pending_amount": 0,
      "result": "APPROVED",
      "settled_amount": 0,
      "status": "PENDING",
      "transaction_series": {
        "related_transaction_event_token": "123e4567-e89b-12d3-a456-426614174000",
        "related_transaction_token": "123e4567-e89b-12d3-a456-426614174000",
        "type": "FEE"
      },
      "updated": "2019-12-27T18:11:19.117Z",
      "user_defined_id": "user_defined_id"
    }
  ],
  "has_more": true
}