ImportConnection
AuthorizationRequires user scoped authorization via session token. See the 'Session Token Authentication' section in Enablement Services Authorization guide for reference.
The importConnection mutation allows you to import a previously established aggregator connection, enabling our system to ingest and categorize transactions associated with that connection.
This mutation accepts both Plaid access tokens and processor tokens.
Access Token: A token that provides full access to the user's financial data.Processor Token: A token created for a specific processor that grants limited access, typically used for one-time data sharing.
.
# Example using an access token
mutation {
importConnection(token: "access-sandbox-123abc") {
connectionId
provider
}
}
# Example using a processor token
mutation {
importConnection(token: "processor-sandbox-456def") {
connectionId
provider
}
}
Input Attributes
| Attribute | Description |
|---|---|
| token | A Plaid access token or processor token. |
Output Attributes
| Attribute | Description |
|---|---|
| connectionid | Unique connection identifier. |
| provider | Connection provider (PLAID, MX, etc) |
Updated about 2 months ago
