Plaid Compatibility Layer
/item/get
POST
/
item
/
get
Copy
curl --request POST \
--url http://localhost:8080/plaid-compatible/item/get \
--header 'Content-Type: application/json' \
--header 'PLAID-CLIENT-ID: <api-key>' \
--data '{
"client_id": "<string>",
"secret": "<string>",
"access_token": "<string>"
}'
Copy
{
"item": {
"item_id": "<string>",
"institution_id": "<string>",
"webhook": "<string>",
"error": {
"error_type": "INVALID_REQUEST",
"error_code": "<string>",
"error_message": "<string>",
"display_message": "<string>",
"request_id": "<string>",
"causes": [
{}
],
"status": 123,
"documentation_url": "<string>",
"suggested_action": "<string>"
},
"available_products": [
"transactions"
],
"billed_products": [
"transactions"
],
"products": [
"transactions"
],
"consented_products": [
"transactions"
]
},
"status": {
"investments": {
"last_successful_update": "2023-11-07T05:31:56Z",
"last_failed_update": "2023-11-07T05:31:56Z"
},
"transactions": {
"last_successful_update": "2023-11-07T05:31:56Z",
"last_failed_update": "2023-11-07T05:31:56Z"
},
"last_webhook": {
"sent_at": "2023-11-07T05:31:56Z",
"code_sent": "<string>"
}
},
"request_id": "<string>"
}
Authorizations
Headers
Body
application/json
ItemGetRequest defines the request schema for /item/get
Response
200
application/json
OK
ItemGetResponse defines the response schema for /item/get
and /item/webhook/update
Was this page helpful?
Copy
curl --request POST \
--url http://localhost:8080/plaid-compatible/item/get \
--header 'Content-Type: application/json' \
--header 'PLAID-CLIENT-ID: <api-key>' \
--data '{
"client_id": "<string>",
"secret": "<string>",
"access_token": "<string>"
}'
Copy
{
"item": {
"item_id": "<string>",
"institution_id": "<string>",
"webhook": "<string>",
"error": {
"error_type": "INVALID_REQUEST",
"error_code": "<string>",
"error_message": "<string>",
"display_message": "<string>",
"request_id": "<string>",
"causes": [
{}
],
"status": 123,
"documentation_url": "<string>",
"suggested_action": "<string>"
},
"available_products": [
"transactions"
],
"billed_products": [
"transactions"
],
"products": [
"transactions"
],
"consented_products": [
"transactions"
]
},
"status": {
"investments": {
"last_successful_update": "2023-11-07T05:31:56Z",
"last_failed_update": "2023-11-07T05:31:56Z"
},
"transactions": {
"last_successful_update": "2023-11-07T05:31:56Z",
"last_failed_update": "2023-11-07T05:31:56Z"
},
"last_webhook": {
"sent_at": "2023-11-07T05:31:56Z",
"code_sent": "<string>"
}
},
"request_id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.