Get Summary of an Account Updater Request
This guide shows you how to use the Account Updater API resource and a request_id
to get summarized information about a specified Account Updater request. The response includes the status of the Account Updater request. See Get Summary of an Account Updater Request in API Reference for field definitions.
Prerequisites
- See Create a Sandbox Account to sign up and log in to the Maast Manager portal.
- Follow the steps in Get Your API Credentials to save a sandbox ID and API key.
- See Authentication to format the credentials and generate your API token. (Alternatively, use the credentials as-is to test this endpoint with our 'Try It!' feature.)
- Follow the steps in the Submit Account Updater Request guide to initiate an Account Updater request. Save the
request_id
value in the response.
Implement
Write a GET request. For the request endpoint, add your request_id
value to the end of /platform/aus/request/summary/
. The resulting endpoint is /platform/aus/request/summary/{request_id}
.
Your complete request will resemble the sample code below, where the request_id
value is 112
:
curl --request GET \
--url https://api-test.maast.com/platform/aus/request/summary/112 \
--header 'accept: application/json' \
--header 'authorization: Basic OjllZGVjMjFhMzFjMHh5ejc4OWUzMGEzNDE2YWJjMTIz'
Integrate
Send your request. You will receive a response like this from the Maast server:
{
"code": 0,
"message": "Success",
"data": {
"request_id": 112,
"merchant_id": 212000000001,
"status": "QUEUED",
"method": "harvest_card_vault",
"cnt_request": 145,
"cnt_response": 145,
"cnt_update": 25,
"request_date": "2025-05-06T00:00:00.000Z",
"rejected_cards": [
{
"card_id": "86e1b00d9b0811e68df3069d8f743581",
"reject_reason": "Invalid card id. Card not found."
}
]
}
}
Check the code
field in the request response: 0
confirms success. If the value is something other than 0
, check Platform API Response Codes in Reference.
The data
field shows information about the specified request. Check the status
field for the Account Updater request's status. See Get Summary of an Account Updater Request in API Reference for field definitions.
Test and Go Live
See our Test and Go Live guide to test your API integration and to start transacting with an active production account.
Updated 11 months ago