Get details for map ID

get

/api/{version}/mapping/{mapId}

Versions Supported:

v4

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : schema
Type: object
Mapping details.
Show Source
Nested Schema : createdOn
Type: object
Nested Schema : mapAttribute
Type: array
Show Source
Nested Schema : modifiedOn
Type: object
Nested Schema : MappingAttributes
Type: object
Show Source

404 Response

Requested resource could not be found.

500 Response

An unexpected error occurred during request.
Back to Top

Examples

Example Request:

/api/v4/mapping/id1

Example Output:

{
"createdBy": "3",
"createdOn": "2014-03-28 09:09:39.787788",
"editable": "Y",
"mapAttribute": [{
"daasAttributeDisp": "Business Name",
"daasAttributeId": "11386",
"daasAttributeMsgKey": "BUSINESS_NAME",
"daasAttributeName": "name.display_name",
"daasAttributeType": "FIELD",
"daasObjectName": "COMPANY",
"enrichRuleName": "UPDATE",
"sortOrder": "1",
"sourceAttributeDisp": "BusinessName",
"sourceAttributeId": "0",
"sourceAttributeName": "BusinessName",
"targetAttributeId": "0"
}, {
"daasAttributeDisp": "City",
"daasAttributeId": "11393",
"daasAttributeMsgKey": "CITY",
"daasAttributeName": "location.city",
"daasAttributeType": "FIELD",
"daasObjectName": "COMPANY",
"enrichRuleName": "UPDATE",
"sortOrder": "2",
"sourceAttributeDisp": "City",
"sourceAttributeId": "0",
"sourceAttributeName": "City",
"targetAttributeId": "0"
}],
"mapId": "10253",
"mapName": "testmap",
"mapType": "ENRICH",
"modifiedBy": "3",
"modifiedOn": "2014-03-28 09:09:39.787788",
"objectType": "COMPANY"}

Error Response Details:

{ "errorMessage": "DCS-1 : The version of the service is not supported. Action: Provide the supported version for accessing the service." }
Back to Top