SubmitData response message
- Last UpdatedAug 29, 2023
- 1 minute read
This is an example of the full structure of a SubmitData response message.
<DataSubmissionResults>
<Results>
<Result>
<SetId>0123888</SetId>
<RecordAction>Insert</RecordAction>
</Result>
<Result>
<SetId>01234567</SetId>
<RecordAction>Update</RecordAction>
</Result>
</Results>
</DataSubmissionResults>
Response parameters: Results section
Contains the set of results from the SubmitData action.
<Result>
<SetId>0123888</SetId>
<RecordAction>Insert</RecordAction>
</Result>
|
Parameter |
Description |
|---|---|
|
Result |
Each individual result contains a SetId and RecordAction. |
|
SetId |
Returns the SetId of the specific record that was updated. This is a unique identifier for the record. This parameter maps to the row.id returned by GetData. It is a numeric value. When a record is edited, this is the ID for the specified record. When new records are inserted, this is a new ID for created records. For movements, the SetId is 0 (zero). |
|
RecordAction |
Returns Update or Insert to indicate whether the record updated an existing record or added a new record. |