POST call to retry a failed publish. If an error occurs on a Publish (reported through the /api/Status call below), a retry can be attempted with this API call. The only field required is the apiKey because only the most recently failed publish will be retried. If the most current publish is successful, a retry will not be attempted. Note: a retry cannot be run if a publish is currently in progress.
Fields:
apiKey | Required: Secret Code used to authenticate the call and identify the OEM. For more information on generating your secret API Key, please refer to Appendix A, API Key generation. |
Sample URL:
https://xmlimport.datamanager.arinet.com/api/Retry
Sample JSON request:
{
“apiKey”: “992dc0e2-b8b0-4f9e-a4cd-19eb9fc19fa8”
}
Response codes:
200 | If successful, will return a JSON object with the publish ID of the attempted retry. This can then be used to request the status of the retry using the /api/status call (listed below). |
400 | Error returned in the form of a JSON object and a detailed message. |
401 | Unauthorized. This means the apiKey used does not have access to make these calls. |
500 | Unexpected error. |
Sample response:
{
“publishID”: 3
}