> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# sap-successfactors-foundation-lookups

> SAP SuccessFactors Lookups

**Server path:** `/sap-successfactors-foundation-lookups` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                                              | Description                              |
| --------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
| [`sap_successfactors_foundation_lookups_get_mdfenum_value`](#sap_successfactors_foundation_lookups_get_mdfenum_value)             | Get entity from MDFEnumValue by key      |
| [`sap_successfactors_foundation_lookups_get_mdflocalized_value`](#sap_successfactors_foundation_lookups_get_mdflocalized_value)   | Get entity from MDFLocalizedValue by key |
| [`sap_successfactors_foundation_lookups_list_mdfenum_value`](#sap_successfactors_foundation_lookups_list_mdfenum_value)           | Get entities from MDFEnumValue           |
| [`sap_successfactors_foundation_lookups_list_mdflocalized_value`](#sap_successfactors_foundation_lookups_list_mdflocalized_value) | Get entities from MDFLocalizedValue      |

***

## sap\_successfactors\_foundation\_lookups\_get\_mdfenum\_value

Get entity from MDFEnumValue by key

**Parameters:**

| Parameter | Type      | Required | Default | Description                                                                                                                                    |
| --------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `key`     | string    | Yes      | —       | key: key                                                                                                                                       |
| `value`   | string    | Yes      | —       | key: value                                                                                                                                     |
| `$select` | string\[] | No       | —       | Select properties to be returned, see [OData Select](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374620) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "key": {
        "type": "string",
        "description": "key: key"
      },
      "value": {
        "type": "string",
        "description": "key: value"
      },
      "$select": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "de_DE",
            "en_GB",
            "en_US",
            "es_ES",
            "fr_FR",
            "ja_JP",
            "key",
            "ko_KR",
            "nl_NL",
            "pt_BR",
            "pt_PT",
            "ru_RU",
            "value",
            "zh_CN",
            "zh_TW"
          ]
        },
        "description": "Select properties to be returned, see [OData Select](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374620)"
      }
    },
    "required": [
      "PCID",
      "key",
      "value"
    ]
  }
  ```
</Expandable>

***

## sap\_successfactors\_foundation\_lookups\_get\_mdflocalized\_value

Get entity from MDFLocalizedValue by key

**Parameters:**

| Parameter | Type      | Required | Default | Description                                                                                                                                    |
| --------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `locale`  | string    | Yes      | —       | key: locale                                                                                                                                    |
| `$select` | string\[] | No       | —       | Select properties to be returned, see [OData Select](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374620) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "locale": {
        "type": "string",
        "description": "key: locale"
      },
      "$select": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "locale",
            "value"
          ]
        },
        "description": "Select properties to be returned, see [OData Select](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374620)"
      }
    },
    "required": [
      "PCID",
      "locale"
    ]
  }
  ```
</Expandable>

***

## sap\_successfactors\_foundation\_lookups\_list\_mdfenum\_value

Get entities from MDFEnumValue

**Parameters:**

| Parameter  | Type      | Required | Default | Description                                                                                                                                      |
| ---------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `$top`     | integer   | No       | —       | Show only the first n items, see [OData Paging - Top](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374630)  |
| `$skip`    | integer   | No       | —       | Skip the first n items, see [OData Paging - Skip](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374631)      |
| `$search`  | string    | No       | —       | Search items by search phrases, see [OData Searching](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374633)  |
| `$filter`  | string    | No       | —       | Filter items by property values, see [OData Filtering](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374625) |
| `$count`   | boolean   | No       | —       | Include count of items, see [OData Count](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374632)              |
| `$orderby` | string\[] | No       | —       | Order items by property values, see [OData Sorting](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374629)    |
| `$select`  | string\[] | No       | —       | Select properties to be returned, see [OData Select](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374620)   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "$top": {
        "type": "integer",
        "description": "Show only the first n items, see [OData Paging - Top](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374630)"
      },
      "$skip": {
        "type": "integer",
        "description": "Skip the first n items, see [OData Paging - Skip](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374631)"
      },
      "$search": {
        "type": "string",
        "description": "Search items by search phrases, see [OData Searching](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374633)"
      },
      "$filter": {
        "type": "string",
        "description": "Filter items by property values, see [OData Filtering](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374625)"
      },
      "$count": {
        "type": "boolean",
        "description": "Include count of items, see [OData Count](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374632)"
      },
      "$orderby": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "de_DE",
            "de_DE desc",
            "en_GB",
            "en_GB desc",
            "en_US",
            "en_US desc",
            "es_ES",
            "es_ES desc",
            "fr_FR",
            "fr_FR desc",
            "ja_JP",
            "ja_JP desc",
            "key",
            "key desc",
            "ko_KR",
            "ko_KR desc",
            "nl_NL",
            "nl_NL desc",
            "pt_BR",
            "pt_BR desc",
            "pt_PT",
            "pt_PT desc",
            "ru_RU",
            "ru_RU desc",
            "value",
            "value desc",
            "zh_CN",
            "zh_CN desc",
            "zh_TW",
            "zh_TW desc"
          ]
        },
        "description": "Order items by property values, see [OData Sorting](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374629)"
      },
      "$select": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "de_DE",
            "en_GB",
            "en_US",
            "es_ES",
            "fr_FR",
            "ja_JP",
            "key",
            "ko_KR",
            "nl_NL",
            "pt_BR",
            "pt_PT",
            "ru_RU",
            "value",
            "zh_CN",
            "zh_TW"
          ]
        },
        "description": "Select properties to be returned, see [OData Select](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374620)"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## sap\_successfactors\_foundation\_lookups\_list\_mdflocalized\_value

Get entities from MDFLocalizedValue

**Parameters:**

| Parameter  | Type      | Required | Default | Description                                                                                                                                      |
| ---------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `$top`     | integer   | No       | —       | Show only the first n items, see [OData Paging - Top](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374630)  |
| `$skip`    | integer   | No       | —       | Skip the first n items, see [OData Paging - Skip](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374631)      |
| `$search`  | string    | No       | —       | Search items by search phrases, see [OData Searching](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374633)  |
| `$filter`  | string    | No       | —       | Filter items by property values, see [OData Filtering](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374625) |
| `$count`   | boolean   | No       | —       | Include count of items, see [OData Count](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374632)              |
| `$orderby` | string\[] | No       | —       | Order items by property values, see [OData Sorting](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374629)    |
| `$select`  | string\[] | No       | —       | Select properties to be returned, see [OData Select](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374620)   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "$top": {
        "type": "integer",
        "description": "Show only the first n items, see [OData Paging - Top](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374630)"
      },
      "$skip": {
        "type": "integer",
        "description": "Skip the first n items, see [OData Paging - Skip](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374631)"
      },
      "$search": {
        "type": "string",
        "description": "Search items by search phrases, see [OData Searching](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374633)"
      },
      "$filter": {
        "type": "string",
        "description": "Filter items by property values, see [OData Filtering](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374625)"
      },
      "$count": {
        "type": "boolean",
        "description": "Include count of items, see [OData Count](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374632)"
      },
      "$orderby": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "locale",
            "locale desc",
            "value",
            "value desc"
          ]
        },
        "description": "Order items by property values, see [OData Sorting](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374629)"
      },
      "$select": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "locale",
            "value"
          ]
        },
        "description": "Select properties to be returned, see [OData Select](http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part1-protocol.html#_Toc445374620)"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
