GetSubmissionIdByRecordId
Gets information of the submission by Record Id.
GET Utility/GetSubmissionIdByRecordId
Request Params
Field | Type | Description |
---|---|---|
RecordId | guid | Unique identifier of a record. |
Request Params
"Utility/GetSubmissionIdByRecordId?RecordId=56bd98f1-f01c-47d1-9cfb-9c40532f0153"
Response Body
Field | Type | Description |
---|---|---|
StatusCode | number | Returns the HTTP status codes like 200,300 etc. |
StatusName | string | Name of the status code. |
StatusMessage | string | Detailed status message. |
SubmissionIds | guid | List of submission Ids related to the User Id. |
Errors | object[] | Shows detailed error information. |
Code | string | Returns the validation error code. |
Name | string | Name of the validation error. |
Message | string | Description of the validation error. |
Type | string | Type of validation error. |
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "db283d52-9c19-4923-90f7-02479204b9a6",
"Errors": null
}