Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Request Payload:

Code Block
{
  "security-id": "<64 character alphanumeric Security ID>",
  "flow-id": "<8 character alphanumeric Flow ID>",
  "phonon-uuids": [
    {"<36 character alphanumeric Phonon UUID>"},
    {"<36 character alphanumeric Phonon UUID>"},
    ...
  ],
  "fetch-attempt": "ALL" // ALL = Fetch all attempts; LAST = Fetch only last attempt
}

The Request Payload has been updated on Tuesday 9th May, 2023 with two new additional parameters namely Security ID and Flow ID.

Sample Request:

Code Block
languagejson
{
	"security-id": "a1a465d2df243a7559bfdffb65ec7b7c8e60d1b230d482debb01917fb502a999",
    "flow-id": "QG8k000A",
	"phonon-uuids": [
		"b2f9909e-9ac4-4e5c-9ac8-183f24ea9436"
	],
	"fetch-attempt": "ALL"
}

Notes:

  1. Ensure valid JSON format

  2. Ensure IP is Whitelisted in your account

  3. Ensure your account validity is not expired

  4. Ensure number of Phonon UUIDs is less than Max data size (

...

  1. 100 UUIDs is current max limit) - Response will contain api-response-message as ‘Max Data List Size Exceeded’ and no result will be fetched.

...

Response Parameters:

If there’s no data available:

...