Skip to main content

Create a project status

POST 

/api/project-statuses

Required permissions:

  • project_status.create: allows to create resources of projects where the user is the PM or the Account.
  • project_status.create_other: allows to create resources of projects where the user is not the PM nor the Account.

Request

Header Parameters

    Wethod-Company stringrequired

    The company you want to interact with

    Wethod-Version stringrequired

    The API version you want to use

Body

    project_id integerrequired

    ID of the project to which the project status belongs

    date daterequired

    The date of the project status (must be a Monday)

    This follows the YYYY-MM-DD format

    days_left float

    The amount of days left

    This value is required when the project status mode is remaining-days

    progress float

    Possible values: <= 100

    The percentual progress

    This value is required when the project status mode is percentage

    notes string

    The project status notes

    project_status_risk_id integer

    ID of the project status risk

Responses

Returns the project status created.

Schema

    id integerrequired

    Possible values: >= 1

    The unique identifier of the resource

    created_at date-timerequired

    The date and time when the resource was created

    updated_at date-timerequired

    The date and time when the resource was last updated

    project_id integerrequired

    Possible values: >= 1

    ID of the project to which the project status belongs

    date daterequired

    The date of the project status

    days_left floatrequired

    The amount of days left

    progress floatrequired

    The percentual progress

    notes string

    The project status notes

    project_status_risk_id integerrequired

    Possible values: >= 1

    ID of the project status risk

    deleted_at date-time

    The date and time when the resource was deleted

Loading...