HTTP 200 SUCCESS will be returned.
Most successful DELETE requests will return with a status code of 200 and an empty response body, e.g. {}. However, certain endpoints — such as delete scheduled payment — return with a status of 204: No Content without an empty response body. Please pay close attention to the documentation for individual delete endpoints.
On failure, a non-2XX HTTP status code will be returned, along with an error response body.
Sometimes simply returning the HTTP status code is not enough to indicate what went wrong. To compensate for this, endpoints may respond with a body containing more information about the error.
An error response body consists of a code and a message.
- A
422error with a4220code can occur on a create member request for the following reasons: - The user already has a member connecting it to the same institution, using the same login credential. The duplicate member is not allowed.
- The provided
external_guidvalue already exists in a member belonging to a user in the same client. Please use a unique value. - The provided
institution_guiddoes not exist.
429 Too Many Requests
This error is triggered when exceeding the maximum number of concurrent connections, or the rate limit for requests per second (rps) is surpassed. Requests receiving a 429 status code should be retried once the rate limit window has expired. To prevent this error, decrease the number of concurrent connections or the number of requests per second. Rate limiting is applied per client with the following thresholds:- GETs: 2000/rps
- POSTs: 750/rps
- PUTs: 750/rps
- DELETEs: 150/rps
Institution Blocking Errors
Member operations (create, update) and job creation (verify, identify) may be blocked based on an institution’sstatus or client_status fields. When blocked, the API returns a 422 Unprocessable Entity error with a user-friendly message.
Error Response Structure
error.message field contains text that can be displayed directly to end users. The specific message depends on the institution’s status or client_status.
Common Blocking Scenarios
Best Practices
- When you receive a 422 error with code 4230 for member operations, the error is institution-related
- Display
error.messageto users as it provides clear, user-friendly explanations - Provide clear feedback to users about why the operation failed due to institution unavailability or restrictions

