service · inferred from evidence
Plaid
A third-party open-banking verification provider mentioned in the context of token expiration.
- Plaid INVALID_BODY 'body could not be parsed as JSON' when passing datetime to phone_number_verified_time
Pass a timezone-aware datetime, not a naive one. `datetime.fromtimestamp(0)` has no tzinfo, so the SDK serializes it without the 'Z' suffix and Plaid rejects the body. Use `datetime.datetime.now(datetime.timezone.utc)` or `datetime.datetime
- Dwolla dwollav2: catching expired Plaid token errors (UpdateCredentials)
An expired Plaid token surfaced as a generic dwollav2 Error with code UpdateCredentials, hard to isolate from other failures. Dwolla shipped a dedicated error class for it; upgrade and catch it by name.