PeopleForce
People

Early access

Company API v4 is the next-generation API and is under active development. Endpoints and fields may still change.

List all person salaries

Returns a list of salary records for a person

GET
/api/v4/people/{person_id}/compensation/salaries

Returns a list of salary records for a person

Path Parameters

person_id*integer
Formatint32

Response Body

application/json

curl -X GET "https://example.com/api/v4/people/0/compensation/salaries"
{  "data": [    {      "id": 0,      "effective_on": "2019-08-24",      "amount": 0.1,      "currency_code": "string",      "per": "string",      "comment": "string",      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z",      "custom_fields": {}    }  ]}