put https://{companyDomain}.bamboohr.com/api/v1/performance/employees//goals//progress
Update the progress percentage of an individual goal.
Sample Request Url
https://api.bamboohr.com/api/gateway.php/samplecompany/v1/performance/employees/123/goals/20/progressSample Request Body
{
    "percentComplete": 60
}Sample Response
{
    "goal": {
        "id": "20",
        "title": "Lorem ipsum",
        "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
        "percentComplete": 60,
        "alignsWithOptionId": null,
        "sharedWithEmployeeIds": [
            123,
            125
        ],
        "dueDate": "2022-05-31",
        "completionDate": null,
        "status": "in_progress"
    }
}