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/
https://docs.nelnetpay.com/_mock/apis/grant-list-api-spec-1/account
https://api.uat.nelnetpay.com/grantlist/account
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" } }