Polling for Signed Manifest

Poll for the signed manifest using the provided polling URL. If a 202 response code is received, repeat the polling until a 200 response is received.

To poll for the signed manifest

Make a GET call to https://<siteID>-ns-uat.flexnetoperations.com/uai/2.0/signed-updates/manifests/16489f0c-3b34-abfa-b342-3fe2459023e1.

Body Type

Code

Request Body

N/A

Response Body

{

    "protected": "eyJhbGciOiJSUzI1NiJ9",

    "payload":"eyJtYW5pZmVzdFZlcnNpb24iOiIxLjAiLCJtYW5pZmVzdEZpbGVzIjpbeyJmaWxlVXJsIjoiaHR0cHM6Ly9leGFtcGxlLmNvbS9maWxlbmFtZS50eHQiLCJmaWxlU2l6ZSI6IjY2NjgxMSIsIm1kNUhhc2giOiJlMzgxOTBlNDcwM2ViNjVkMzk5MWNjMTA5ZjJjOTg4NiIsInNoYTI1Nkhhc2giOiIiLCJleGVjdXRlIjoibm8ifV19",

    "signature":"S0xEZx0rPPRr_tWQ2ufQJ9pkC9OZGkrjxuAqLunm7GDjw2hreXAsEFsxlahiklwaLcJUfArNO3C4oOXEAQrS0prJhfRxywHzLzyflImO3Ku-A9XRxr3rYpmCfLWJWxVH8cVXHBHVmo5mV50sXPOBeohrcLKUSzo1u3IMTEoi5cQ"

}

Use the response to do the following:

Check signature. Any tool or library that verifies a signature will use all three fields from the response and the public key (obtained using the REST API /update-signing-key/).
Decode response. Any Base64URL decoder will be able to decode the response into JSON format, providing the same information as seen in the previous section, Requesting Updates and Manifests. (The tool used to check the signature will probably return a decoded response.)

This step completes the registration.