Adding an entry in lookup field
This API service lets you manage the different functionalities in a form.
Adding a entry in lookup field
Methodsfetch(for:completionHandler:)This fetches the meta-data of the form that can be accessed through "Allow new entries" property of the lookup field. submit(for:form:completionHandler:)This submits the data entered in the form that can be accessed through "Allow new entries" property of the lookup field. In case media fields are present, you need to use the upload API before using this API.
fetch(for:completionHandler:) Parameters
| lookUpAPIConfiguration | A configuration that has the collection of necessary parameters to assist the lookup form fetch. |
|---|
| completionHandler | The Form object and Error will be returned to the completionHandler. |
|---|
submit(for:form:completionHandler:) Parameters
| lookUpAPIConfiguration | A configuration that has the collection of necessary parameters to assist the lookup form fetch. |
|---|
| form | The Form object that is to be submitted. |
|---|
| completionHandler | The Choice and Error will be returned to the completionHandler. |
|---|