get_resource
Fetch specific Lithic resources like cards, accounts, or transactions by providing resource type and ID. Simplify access to banking and card services data.
Instructions
Get a specific Lithic resource by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
resourceId | Yes | ID/token of the resource to fetch | |
resourceType | Yes | Type of resource (card, account, transaction, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"resourceId": {
"description": "ID/token of the resource to fetch",
"type": "string"
},
"resourceType": {
"description": "Type of resource (card, account, transaction, etc.)",
"type": "string"
}
},
"required": [
"resourceType",
"resourceId"
],
"type": "object"
}