Retrieves the form associated with a message, which can be used to reply to the message. URLhttps://secure.healthx.com/api/MessagingV1/Form/{objectID}?trackingid={trackingID}&transactionid={transactionID}
HTTP MethodGET Parameters- objectID: The object ID, in GUID format (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
- This is an internal representation of this instance of the ExR form
- trackingID: Optional. The tracking ID if it's a reply.
- transactionID: Optional. The transaction ID if it's a reply, in GUID format (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
Response
<Form xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Name>Preauthorization Request Form</Name> <Header>Preauthorization Request</Header> <Instructions>Please fill in the information below.</Instructions> <Items> <FormItem i:type="a:FormItemTextArea"> <DisplayOrder>1</a:DisplayOrder> <FieldDetails>rows="5" cols="40"^</a:FieldDetails> <FieldTag>FIELD1</a:FieldTag> <FieldType>TextArea</a:FieldType> <Label>Field1</a:Label> <ViewVisible>Enabled</a:ViewVisible> </a:FormItem> </Items> </Form>
|