Return attributes for a source

get

/api/{version}/mapping/attributes/{source}

Versions Supported:

v4

Request

Path Parameters
  • The type of attributes to be retrieved; for example, daas, fcrm.
Query 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
Catalog attribute list.
Show Source
Nested Schema : catalogAttributes
Type: array
Show Source
Nested Schema : CatalogAttributes
Type: object
Show Source
Nested Schema : operations
Type: array
Show Source
  • Allowed Values: [ "BETWEEN", "CONTAINS", "DOESNOTEXIST", "ENDSWITH", "EQUALS", "EXISTS", "GREATERTHAN", "GREATERTHANEQUALS", "ISBLANK", "ISNOTBLANK", "LESSTHAN", "LESSTHANEQUALS", "LIKE", "NOTBETWEEN", "RANGE", "STARTSWITH" ]
Nested Schema : pickListValues
Type: array
Show Source
Nested Schema : Lookup
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/attributes/daas?object=COMPANY

Example Output:

{
"catalogAttributes": [{
"attributeDisplayName": "Company ID",
"attributeId": "11385",
"attributeName": "id",
"objectName": "COMPANY",
"tierLevel": "STANDARD"
}, {
"attributeDisplayName": "Business Name",
"attributeId": "11386",
"attributeName": "name.display_name",
"objectName": "COMPANY",
"tierLevel": "STANDARD"
}, {
"attributeDisplayName": "OrganizationType",
"attributeId": "11387",
"attributeName": "info.organization_type",
"objectName": "COMPANY",
"tierLevel": "STANDARD"
}, ...]
}

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