Pronto v5 Web Services
MethodUpdateDocumentFormFields
Pronto v5 Web Services > All Operations Resource Group : UpdateDocumentFormFields (Method)
Request (IProntoService_UpdateDocumentFormFields_InputMessage)

The request body is of type UpdateDocumentFormFields.

Request Body Parameters

NameDescriptionData Type
 ServiceAuthenticationModel
 DocumentUpdateFormFieldsRequestModel
EnableLogging Element DocumentFormFieldsModel Element Sequence DocumentFormFields Element Sequence documentUpdateFormFieldsRequest Element ApiPassword Element ApiUsername Element ApiSecretOrAuthData Element ApiKeyOrProntoID Element Sequence serviceAuthentication Element Sequence UpdateDocumentFormFields Element

Overview

Response (IProntoService_UpdateDocumentFormFields_OutputMessage)

The response body is of type UpdateDocumentFormFieldsResponse.

Response Body Parameters

NameDescriptionData Type
 DefaultServiceReturnModel
TimeZoneUtcOffset Element ProcessingTime Element Message Element IsSuccessful Element Sequence UpdateDocumentFormFieldsResult Element Sequence UpdateDocumentFormFieldsResponse Element

Overview

Sequence
Sequence
IsSuccessful optional xs:boolean
Message optional xs:string
ProcessingTime optional xs:string
TimeZoneUtcOffset optional xs:double
Example
var model = new DocumentUpdateFormFieldsRequestModel()
{
    DocumentFormFields = new DocumentFormFieldsModel[]
    { 
        new DocumentFormFieldsModel()
        {
            DocumentID = 1000435535,
            FormFields = new FormFieldModel[]
				        {	
				            new FormFieldModel()
				            {
				                Name = "City",
				                Value = "Dallas"
				            },
				            new FormFieldModel()
				            {
				                Name = "State",
				                Value = "TX"
				            }
				        }
        }
    }
};
var results = serviceClient.UpdateDocumentFormFields(sa, model);
if (results.IsSuccessful)
{
    //do work...
}
else
{
    //handle error
}
Dim model = New DocumentUpdateFormFieldsRequestModel() With { 
	 .DocumentFormFields = New DocumentFormFieldsModel() {New DocumentFormFieldsModel() With { 
		 .DocumentID = 1000435535, 
		 .FormFields = New FormFieldModel() {New FormFieldModel() With { 
			 .Name = "City", 
			 .Value = "Dallas" 
		}, New FormFieldModel() With { 
			 .Name = "State", 
			 .Value = "TX" 
		}} 
	}} 
}
Dim results = serviceClient.UpdateDocumentFormFields(sa, model)
If Not results.IsSuccessful Then
    'do work...
Else
    'handle error
End If
See Also
All Operations Resource GroupPronto v5 Web Services