# Add or Remove an account from Grant List Perform a request to add or remove an account from the Grant List. This endpoint uses a valid Basic Authentication username and password for authentication. Endpoint: POST /account Version: 1.1.5 Security: basicAuth ## Request fields (application/json): - `accountNumber` (string, required) The client’s bank account number. Example: "12345677898" - `routingNumber` (string, required) The routing number identifying the client’s bank. Example: "051000017" - `active` (boolean, required) Indicates whether the request is to add or remove an account to or from the Grant List database. Example: true ## Response 200 fields (application/json): - `result` (object) - `result.status` (string) Example: "success" ## Response 400 fields (application/json): - `result` (object) - `result.status` (string) Example: "failure" - `result.error` (array) - `result.error.code` (string) Example: "1008" - `result.error.description` (string) Example: "Routing Number required, must be numeric ..." ## Response 500 fields (application/json): - `result` (object) - `result.status` (string) Example: "failure" - `result.error` (array) - `result.error.code` (string) Example: "500" - `result.error.description` (string) Example: "Internal Server Error"