Validate Source Segment API
- 1 Minute to read
- Print
- DarkLight
- PDF
Validate Source Segment API
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
This API allows you to identify the source segments from the Source file based on the DLR definition. You can supply the related segment members to the Translations DLR by identifying the source segments.
This API helps the Translations DLR to verify and validate the input file for source segment members required for the Translations mapping definitions. Validating the mappings of source segments in the input file improves the performance of the DLR and benefit the clients.
API Parameters
Method
POST
Endpoint Url Syntax
<<Application URL>>/translationdlr/verifysourcesegmentsAPI
Content Type
application/x-www-form-urlencoded
Sample Request Body
Java
{ DataLoadRuleConfig:{ DataLoadRuleId: 667725, DataLoadRuleName:"test_trans_API", ColumnDelimiter: ",", RowDelimiter:"|", TextQualifier:"'" }, Payload: "SRC_SEG1,SRC_SEG2|Ac1,Cmp2|Ac2,Cmp1|Ac3,Cmp4|Ac4,Cmp3|Ac1,Cmp1|" }
Note
<ul>
<li>Either DataLoadRuleId or DataLoadRuleName should be available.</li>
<li>ColumnDelimiter is mandatory.</li>
<li>RowDelimiter is a new Line(\n) by default if nothing is specified.</li>
<li>TextQualifier is an optional parameter, and by default, it’s none.</li>
<li>The first row in the payload must contain the source segments header info and in the form as SRC_SEG<<Segment number>> ex: SRC_SEG1, SRC_SEG2 etc.</li>
</ul>
</div>
Sample Responses
Note
The DETAILS (Message and rows details) section of the response will vary with the various conditions.
The DETAILS (Message and rows details) section of the response will vary with the various conditions.
JSON
JSON
{
"DataloadId": 667725,
"DataLoadRuleName": "test_trans_API",
"Message": "The source segments validation is successful.",
"Details": [{
"Message": "Translation Details.",
"ColumnHeaders": [
"Row",
"Source Column 1",
"Source Column 2",
"Account",
"Company",
"Translation Name"
],
"Data": [
[
"1",
"Ac2",
"Cmp1",
"1943-YTD",
"2091LC",
"test_account , test_company"
],
[
"2",
"Ac16",
"Cmp2",
"4018-MTD",
"2092CC",
"test_account , test_company"
]
]
}
]
}
Failed Response
{
DataloadId: 667725,
DataLoadRuleName: "test_trans_API",
Message: "Validations for source segments failed.",
Details: [
{
Message: "A few segments are not part of the Translations Setup or DLR. Please verify and try again.",
ColumnHeaders: [
Row,
Source Column 1,
Source Column 2,
Translation Name
],
Data: [
[
1,
Ac1,
Cmp2,
test_comp_account_Company
],
[
2,
Ac2,
Cmp1,
test_comp_account_Company
],
[
3,
Ac3,
Cmp4,
test_comp_account_Company
],
[
4,
Ac4,
Cmp3,
test_comp_account_Company
]
]
}
]
}
Was this article helpful?