1from openledger import OpenLedgerClient2client = OpenLedgerClient(token="YOUR_TOKEN", )3client.entities.get_entity_details(entity_id='entityId', )
1{2 "entity": {3 "id": "string",4 "name": "string",5 "externalId": "string",6 "entityType": "string",7 "address": {8 "street": "string",9 "city": "string",10 "state": "string",11 "zip": "string",12 "country": "string"13 },14 "settings": {},15 "plaidAccounts": [16 {17 "id": "string",18 "plaidAccessToken": "string",19 "plaidItemId": "string",20 "plaidInstitutionId": "string",21 "plaidAccountId": "string",22 "accountName": "string",23 "accountType": "string",24 "accountSubtype": "string",25 "accountMask": "string",26 "linkedAt": "2024-01-15T09:30:00Z",27 "status": "string",28 "entityId": "string",29 "cursor": "string",30 "needsInitialSync": true31 }32 ],33 "createdAt": "2024-01-15T09:30:00Z",34 "developerId": "string",35 "instanceId": "string",36 "status": "string"37 }38}
Bearer authentication of the form Bearer <token>, where token is your auth token.
Bearer <token>