Skip to main content
GET
/
expense-report
/
reimbursement-sources
cURL
curl --request GET \
  --url https://api.joinslash.com/expense-report/reimbursement-sources \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "userId": "<string>",
      "latestStatus": "active",
      "accountName": "<string>",
      "type": "<string>",
      "subtype": "<string>",
      "institution": {
        "id": "<string>",
        "name": "<string>"
      },
      "metadata": {
        "timestamp": "2023-11-07T05:31:56Z"
      },
      "lastSyncedAt": "<string>",
      "lastStatusChangeAt": "<string>",
      "officialAccountName": "<string>",
      "accountOwnerName": "<string>",
      "mask": "<string>",
      "balance": {
        "amount": {
          "amount_cents": 123,
          "currency": "USD"
        },
        "lastBalanceCheckDate": "<string>"
      },
      "latestBalanceCheck": {
        "currentAmount": {
          "amount_cents": 123,
          "currency": "USD"
        },
        "availableAmount": {
          "amount_cents": 123,
          "currency": "USD"
        },
        "limitAmount": {
          "amount_cents": 123,
          "currency": "USD"
        }
      },
      "error": {
        "errorCode": "<string>",
        "errorType": "<string>",
        "actionMessage": "<string>",
        "userActionCta": "<string>"
      },
      "institutionLogo": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Authentication from public API requests

Query Parameters

The legal entity ID. Required if authenticating with access to multiple legal entities.

userId
string
required

The user ID to get reimbursement sources for. Required.

Response

OK

data
ReimbursementSource · object[]
required