| Response Code | Description | Response Format |
|---|---|---|
| 202 | Success |
{
"id": "string",
"status": 0,
"uri": "string",
"error": [
"string"
],
"data": {
"transactionId": "string"
}
}
|
Response Parameter Description
DataRecordCreateResponse
| Field | Data Type | Description |
|---|---|---|
| Id | String Nullable: true |
Data record id for the record newly created. The value is null if the request is failed due to some reason. The error information can be found under Error field. |
| Status | Integer (int32) | HTTP Status code of the record. If the request is successful and creates a data record, the value 201 needs to be assigned. |
| Uri | String Nullable: true |
URI to fetch the record through API in form of GET method. |
| Error | String[] Nullable: true |
If any validation failed, add the same in Error property. You can add more than one error message for the same record. |
| Data | DataRecordUniqueResponse[] Nullable: true |
DataRecordUniqueResponse class contains the fields that ensures uniqueness for data record. |
| transactionId | String Nullable: true |
Data record id for the record newly created. The value is null if the request is failed due to some reason. The error information can be found under Error field. |