Check the Status
Retrieve Declared Parameters
// // overview leveraging the unique interactionidentifier provided upon successfully declaring the audio https //docs elevateai com/tutorials/declare an audio interaction , transcript https //docs elevateai com/tutorials/declare a transcript , or chat https //docs elevateai com/tutorials/declare a chat interaction interaction, this endpoint enables you to instantly retrieve the parameters declared when submitting the interaction for processing when this get get request successfully executes, an http status will be returned to indicate the request was successful, along with a json response outlining the declared parameters https //docs elevateai com/tutorials/retrieve declared parameters#ptbcs for the given interactionidentifier sample api response { "identifier" "a3c1c9b5 5371 472c 97c1 538b369ff149", "type" "audio", "languagetag" "en us", "vertical" "default", "audiotranscriptionmode" "highspeed", "transcript" null, "chat" null, "downloaduri" null, "includeairesults" true } if an error occurs when requesting to declare the interaction, a standard http response code is retuned to indicate the request was unsuccessful, along with a json response containing additional details to assist in troubleshooting troubleshooting // // request parameters & code example // // response schema schema element type description identifier string unique interactionidentifier associated with the request type string type of interaction, will be "audio", "transcript", or "chat" languagetag string primary language of the file, will be "en us" (for north american english), "en" (for international english), or "es 419" (for north american spanish) vertical string vertical associated with interaction, will be "default" audiotranscriptionmode string or null if applicable, desired transcription prioritization, will be "highspeed" or "highaccuracy" transcript null uploaded transcripts are deleted upon processing chat null uploaded chats are deleted upon processing downloaduri string or null url of audio file, if applicable includeairesults string include ai results, will be true or false