---
title: "Project updates via API calls"
slug: "project-updates-via-api-calls"
updated: 2026-06-11T18:51:55Z
published: 2026-06-11T18:51:55Z
canonical: "success.panaya.com/project-updates-via-api-calls"
---

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

# Project updates via API calls

The following API calls can be used to retrieve or update Project information.

**1.) To get project data:**

**GET** {{url}}/api//v2/projects

{{url}} - replace with your Panaya site URL: either [https://my.panaya.com/](https://my.panaya.com/) or [https://emea.panaya.com/](https://emea.panaya.com/)

The Body of the request should be left empty.

Send your [API token](/v1/docs/how-to-create-your-token) in the header with X-Auth-Token to authenticate.

![](https://cdn.document360.io/f404076c-de23-4609-848e-2dfd4ef701b0/Images/Documentation/Screenshot 2026-06-11 130423.png)

**2.) To update project data:**

**PATCH** {{url}}/api//v2/projects/*<ProjectID>*

{{url}} - replace with your Panaya site URL: either [https://my.panaya.com/](https://my.panaya.com/) or [https://emea.panaya.com/](https://emea.panaya.com/)

*<ProjectID>* - replace with the [ID of the project you’re trying to update](/v1/docs/project-id-for-apis)

Send your [API token](/v1/docs/how-to-create-your-token) in the header with X-Auth-Token to authenticate.

BODY of the request:

{

"projectName": "Enter Project name here",

"projectManager": "[email@email.com](mailto:email@email.com)",

"projectStatus": "Completed"

}

"projectManager": "Email" - this needs to be a valid user that is set up in Panaya

"projectStatus": can be one of the following:

- "Active"
- "Completed"
- "On Hold"

![](https://cdn.document360.io/f404076c-de23-4609-848e-2dfd4ef701b0/Images/Documentation/Screenshot 2026-06-11 130345.png)
