Grant List API (1.1.5)
The Grant List API is used as an internal fraud and risk mitigation tool for merchants performing remittance transactions. Merchants can add account information to the Grant List database using the /account operation to let us know which account(s) to use for deposits.
Upon receiving the remittance transaction request, Payments-API checks that the account specified in the request exists in the Grant List database for that merchant. The Grant List API requires Basic Authentication.
Production Server URL: https://api.nelnetpay.com/grantlist
https://docs.nelnetpay.com/_mock/apis/grant-list-api-spec-1/
https://api.uat.nelnetpay.com/grantlist/
- Mock server
https://docs.nelnetpay.com/_mock/apis/grant-list-api-spec-1/account
- UAT
https://api.uat.nelnetpay.com/grantlist/account
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://docs.nelnetpay.com/_mock/apis/grant-list-api-spec-1/account \
-H 'Content-Type: application/json' \
-d '{
"accountNumber": "12345677898",
"routingNumber": "051000017",
"active": true
}'
{ "result": { "status": "success" } }