Invoice Desk
  1. Timesheet
Invoice Desk
  • Getting Started
  • Static Data
    • List currencies
      GET
    • List countries
      GET
    • List states
      GET
    • List cities
      GET
    • StaticDataController_testError
      GET
  • Company
    • List companies
      GET
    • Add Company
      POST
    • Update Company
      PATCH
    • Fetch details of a company by ID
      GET
    • Delete a company
      DELETE
    • Get all payments for a company
      GET
  • Client
    • List clients
      GET
    • Add client
      POST
    • Update a client
      PATCH
    • Remove client
      DELETE
    • Get client details
      GET
  • Invoice
    • List invoices
      GET
    • Create invoice
      POST
    • Get invoice by ID
      GET
    • Update invoice
      PATCH
    • Delete a specific invoice
      DELETE
    • Import invoices
      POST
    • Export invoice
      GET
    • Send invoice
      POST
  • Invoice Payments
    • Record payment for invoice
    • Get payments for invoice
  • Product
    • List products
    • Add product
    • Update a product
    • Remove a product
  • Account
    • Get account details
    • Update account details
  • Project
    • List projects
    • Create a project
    • Get project by ID
    • Update a project
    • Remove a project
  • Company Settings
    • Create a new tax
    • Get company invoice settings
  • Timesheet
    • Get time entries for a project
      GET
    • Create a timesheet
      POST
    • Update
      PATCH
    • Delete
      DELETE
  • Role
    • List roles
  • User Profile
    • Fetch auth user profile
    • Update user profile
  1. Timesheet

Update

PATCH
/companies/{companyId}/projects/{projectId}/timesheets/{timesheetId}
Maintainer:Not configured
Updates an existing timesheet entry

Request

Authorization
Add parameter in header
Example:
X-Token: ********************
Path Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

🟠403Forbidden
🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/companies//projects//timesheets/' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "description": "Working on API documentation",
    "startTime": "2024-02-14T10:00:00Z",
    "endTime": "2024-02-14T18:00:00Z",
    "assigneeId": "123e4567-e89b-12d3-a456-426614174000",
    "dueDate": "2024-02-14T18:00:00Z"
}'
Response Response Example
{
    "data": {
        "id": "string",
        "companyId": "string",
        "projectId": "string",
        "description": "string",
        "startTime": "2019-08-24T14:15:22Z",
        "endTime": "2019-08-24T14:15:22Z",
        "dueDate": "2019-08-24T14:15:22Z",
        "status": "string",
        "project": {
            "id": "string",
            "clientId": "string",
            "companyId": "string",
            "name": "string",
            "description": "string",
            "client": {
                "id": "string",
                "companyId": "string",
                "name": "string",
                "isCompany": true,
                "address": "string",
                "contactInfo": [
                    {
                        "name": "string",
                        "phone": "string",
                        "email": "string"
                    }
                ],
                "createdAt": "string",
                "company": {
                    "id": "string",
                    "accountId": "string",
                    "name": "string",
                    "taxRegistrations": [
                        "string"
                    ],
                    "invoices": [
                        {
                            "id": "string",
                            "companyId": "string",
                            "clientId": "string",
                            "number": 0,
                            "prefix": "string",
                            "financialYear": "string",
                            "date": "string",
                            "dueDate": "string",
                            "status": "string",
                            "currency": "string",
                            "createdAt": "string",
                            "lineItems": [
                                {
                                    "id": "string",
                                    "invoiceId": "string",
                                    "itemId": "string",
                                    "type": "GOODS",
                                    "description": "string",
                                    "price": 0,
                                    "quantity": 0,
                                    "unit": "string",
                                    "sortOrder": 0,
                                    "createdAt": "string",
                                    "taxId": "string"
                                }
                            ],
                            "client": {},
                            "company": {},
                            "discountType": "percentage",
                            "discountValue": 0,
                            "paymentStatus": "paid",
                            "payments": [
                                {
                                    "id": "inv_pay_123",
                                    "amount": 1000,
                                    "currencyCode": "USD",
                                    "paymentDate": "2024-03-15",
                                    "notes": "Payment for March services",
                                    "referenceNumber": "REF123",
                                    "createdAt": "2024-03-15T10:30:00Z",
                                    "invoice": {
                                        "id": "inv_123",
                                        "number": 1001,
                                        "prefix": "INV",
                                        "date": "2024-03-10"
                                    }
                                }
                            ]
                        }
                    ],
                    "logoURL": "string",
                    "address": "string",
                    "addressLine2": "string",
                    "city": "string",
                    "state": "string",
                    "country": "string",
                    "industry": "string",
                    "defaultCurrencyCode": "string",
                    "contactInfo": [
                        {
                            "name": "string",
                            "email": "string",
                            "phone": "string"
                        }
                    ],
                    "projects": [
                        {}
                    ],
                    "invoiceSettings": {}
                }
            },
            "company": {
                "id": "string",
                "accountId": "string",
                "name": "string",
                "taxRegistrations": [
                    "string"
                ],
                "invoices": [
                    {
                        "id": "string",
                        "companyId": "string",
                        "clientId": "string",
                        "number": 0,
                        "prefix": "string",
                        "financialYear": "string",
                        "date": "string",
                        "dueDate": "string",
                        "status": "string",
                        "currency": "string",
                        "createdAt": "string",
                        "lineItems": [
                            {
                                "id": "string",
                                "invoiceId": "string",
                                "itemId": "string",
                                "type": "GOODS",
                                "description": "string",
                                "price": 0,
                                "quantity": 0,
                                "unit": "string",
                                "sortOrder": 0,
                                "createdAt": "string",
                                "taxId": "string"
                            }
                        ],
                        "client": {},
                        "company": {},
                        "discountType": "percentage",
                        "discountValue": 0,
                        "paymentStatus": "paid",
                        "payments": [
                            {
                                "id": "inv_pay_123",
                                "amount": 1000,
                                "currencyCode": "USD",
                                "paymentDate": "2024-03-15",
                                "notes": "Payment for March services",
                                "referenceNumber": "REF123",
                                "createdAt": "2024-03-15T10:30:00Z",
                                "invoice": {
                                    "id": "inv_123",
                                    "number": 1001,
                                    "prefix": "INV",
                                    "date": "2024-03-10"
                                }
                            }
                        ]
                    }
                ],
                "logoURL": "string",
                "address": "string",
                "addressLine2": "string",
                "city": "string",
                "state": "string",
                "country": "string",
                "industry": "string",
                "defaultCurrencyCode": "string",
                "contactInfo": [
                    {
                        "name": "string",
                        "email": "string",
                        "phone": "string"
                    }
                ],
                "projects": [
                    {}
                ],
                "invoiceSettings": {}
            },
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "deletedAt": "2019-08-24T14:15:22Z",
            "status": "pending",
            "timesheets": [
                "string"
            ],
            "startDate": "2019-08-24T14:15:22Z",
            "dueDate": "2019-08-24T14:15:22Z",
            "rate": 0,
            "teamMembers": [
                {
                    "id": "string",
                    "username": "string",
                    "firstName": "string",
                    "lastName": "string",
                    "title": "string",
                    "designation": "string"
                }
            ],
            "tags": [
                {}
            ]
        },
        "assignee": {
            "firstName": "string",
            "lastName": "string",
            "title": "string"
        },
        "invoice": {}
    }
}
Modified at 2025-05-14 06:03:31
Previous
Create a timesheet
Next
Delete
Built with