Get details for map ID
get
/api/{version}/mapping/{mapId}
Versions Supported:
v4
Request
Path Parameters
-
mapId(required): string
mapId ID of the map to be retrieved.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/xml; charset=UTF-8
- application/json; charset=UTF-8
200 Response
Success
Root Schema : schema
Type:
objectMapping details.
Show Source
-
createdBy: integer
(int64)
-
createdOn: object
createdOn
-
editable: string
-
hasCompanyAttributes: string
-
isdefault: boolean
-
mapAttribute: array
mapAttribute
-
mapDesc: string
-
mapId: integer
(int64)
-
mapMode: string
-
mapName: string
-
mapType: string
-
modifiedBy: integer
(int64)
-
modifiedOn: object
modifiedOn
-
objectType: string
Nested Schema : createdOn
Type:
objectNested Schema : modifiedOn
Type:
objectNested Schema : MappingAttributes
Type:
Show Source
object-
active: string
-
daasAttributeDesc: string
-
daasAttributeDisp: string
-
daasAttributeId: integer
(int64)
-
daasAttributeMsgKey: string
-
daasAttributeName: string
-
daasAttributeType: string
-
daasObjectName: string
-
enrichRuleName: string
-
groups: integer
(int64)
-
outputHeaderName: string
-
sortOrder: integer
(int64)
-
sourceArributeType: string
-
sourceAttributeDisp: string
-
sourceAttributeId: integer
(int64)
-
sourceAttributeMsgKey: string
-
sourceAttributeName: string
-
sourceAttributeType: string
-
sourceObjectName: string
-
targetArributeType: string
-
targetAttributeDisp: string
-
targetAttributeDisplayName: string
-
targetAttributeId: integer
(int64)
-
targetAttributeMsgKey: string
-
targetAttributeName: string
-
targetAttributeType: string
-
targetObjectName: string
404 Response
Requested resource could not be found.
500 Response
An unexpected error occurred during request.
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