Frends.SapSuccessFactors.Request / 1.1.0
Summary
Reaches SAP SuccessFactors over its OData and REST interfaces and returns the response in the format you ask for. A pass-through, so it covers the whole API surface.
Typical use — HR integrations such as employee and organisational data; being personal data, take only the fields the integration needs
Essential parameters.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| UrlType | UrlType |
Builder |
Builder |
Choose how to construct the URL. Possible values:
|
| RequestMethod | RequestMethod |
GET |
GET |
HTTP method for the request. Possible values:
|
| Endpoint | String |
– | User |
Entity name or endpoint path (Builder mode only). |
| QueryParameters | String |
– | $filter=userId eq 'user123'&$select=userId,username |
OData query parameters (Builder mode only) |
| CustomUrl | String |
– | https://api.successfactors.com/odata/v2/User?$filter=status eq 'active' |
Full custom URL (Custom mode only). Allows you to call ANY URL, including non-OData endpoints. |
| Body | String |
– | {"userId": "user123", "username": "john.doe"} |
Request body as JSON. |
| Headers | Header[] |
– | [{ "Name": "X-Custom-Header", "Value": "CustomValue" }] |
Additional HTTP headers (optional) |
| ResultFormat | ReturnFormat |
JToken |
JToken |
Format of the result to return Possible values:
|