RequisitionModifiableFields
A Requisition represents a request for an assignment of a user (or team) to a particular PX Task. These are the fields that can be modified when creating or updating a Requisition.
The internal ID of the Project that the Requisition is associated with.
This can only be set at create time (POST
) and cannot be updated.
20945205C94E4576B5FB798DA09B44DE
The internal ID of the user or team that the Requisition is requesting.
64BBA147B9AC41D9978062300826C89F
The internal ID of the user that is requesting the Requisition.
64BBA147B9AC41D9978062300826C89F
The date that the Requisition was created. This is a Unix timestamp.
1681776000
The date that the Requisition was responded to. This is a Unix timestamp.
1681796000
The current state of the Requisition. The options are:
open
- the Requisition has been created and is awaiting a responsefulfilled
- the Requisition has been accepted and the assignment has been createddeclined
- the Requisition has been declineddiscussion
- the Requisition is in discussion
Possible values: [open
, fulfilled
, declined
, discussion
]
open
A comment that can be added to the Requisition.
If true
, the requestee will be notified when the Requisition is created
or updated.
If true
, the requestor will be notified when the Requisition is responded to.
The internal ID of the Assignment that was created from this Requisition. This is only set when the Requisition is fulfilled.
The scheduled end date of the assignment. This is a Unix timestamp.
1679616000
The scheduled start date of the assignment. This is a Unix timestamp.
1678060800
The scheduled work hours for the assignment.
40
{
"id_project": "20945205C94E4576B5FB798DA09B44DE",
"id_requestee": "64BBA147B9AC41D9978062300826C89F",
"id_requestor": "64BBA147B9AC41D9978062300826C89F",
"request_date": 1681776000,
"response_date": 1681796000,
"state": "open",
"comment": "string",
"notify_requestee": true,
"notify_requestor": true,
"id_assignment": "string",
"scheduled_end": 1679616000,
"scheduled_start": 1678060800,
"scheduled_work": 40
}