Pronto v5 Web Services
MethodGetProcessHtmlWrapper
Pronto v5 Web Services > All Operations Resource Group : GetProcessHtmlWrapper (Method)
Request (IProntoService_GetProcessHtmlWrapper_InputMessage)

The request body is of type GetProcessHtmlWrapper.

Request Body Parameters

NameDescriptionData Type
 ServiceAuthenticationModel
 GroupHtmlWrapperRequestModel
Language Element ProntoID Element ParticipantID Element EnableLogging Element Sequence groupHtmlWrapperRequest Element ApiPassword Element ApiUsername Element ApiSecretOrAuthData Element ApiKeyOrProntoID Element Sequence serviceAuthentication Element Sequence GetProcessHtmlWrapper Element

Overview

Sequence
Sequence
ApiKeyOrProntoID optional xs:string
ApiSecretOrAuthData optional xs:string
ApiUsername optional xs:string
ApiPassword optional xs:string
Sequence
EnableLogging optional xs:boolean
ParticipantID optional xs:int
ProntoID optional xs:string
Language optional xs:string
Response (IProntoService_GetProcessHtmlWrapper_OutputMessage)

The response body is of type GetProcessHtmlWrapperResponse.

Response Body Parameters

NameDescriptionData Type
 GroupHtmlWrapperServiceReturnModel
TimeZoneUtcOffset Element ProcessingTime Element FooterHtml Element HeaderHtml Element Sequence HtmlWrapper Element Message Element IsSuccessful Element Sequence GetProcessHtmlWrapperResult Element Sequence GetProcessHtmlWrapperResponse Element

Overview

Sequence
Sequence
IsSuccessful optional xs:boolean
Message optional xs:string
Sequence
HeaderHtml optional xs:string
FooterHtml optional xs:string
ProcessingTime optional xs:string
TimeZoneUtcOffset optional xs:double
Example
var model = new GroupHtmlWrapperRequestModel()
{
	ParticipantID = 1234567890
};
var results = serviceClient.GetProcessHtmlWrapper(sa, model);
if (results.IsSuccessful)
{
	var headerHtml = results.HtmlWrapper.HeaderHtml;
	var footHtml = results.HtmlWrapper.FooterHtml;
}
else
{
	//handle error
}
Dim model = New GroupHtmlWrapperRequestModel() With { _
    .ParticipantID = 1234567890
}
Dim results = serviceClient.GetProcessHtmlWrapper(sa, model)
If results.IsSuccessful Then
    var headerHtml = results.HtmlWrapper.HeaderHtml  'use the return values for your header html
    var footerHtml = results.HtmlWrapper.FooterHtml  'and footer html
Else
    'Handle error
End If
See Also
All Operations Resource GroupPronto v5 Web Services