GetRecordIdBySubmissionId
Gets information of the records by Submission Id.
GET Utility/GetRecordIdBySubmissionId
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | guid | Unique identifier of a submission |
Request Params
"Utility/GetRecordIdBySubmissionId?SubmissionId=db283d52-9c19-4923-90f7-02479204b9a6"
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. |
RecordIds | guid[] | List of record Ids. |
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",
"RecordIds": [
"56bd98f1-f01c-47d1-9cfb-9c40532f0153"
],
"Errors": null
}