Retrieving creationDate and lastUpdated dates from requisitions
Content
I'm looking at the following two fields in the requistion entity:
[3] => stdClass Object
(
[name] => creationDate
[label] => Added to System
[isCustom] =>
[dataType] => Date
[isSearchable] =>
[isRequired] =>
[isReadOnly] => 1
[description] =>
[maxLength] => N/A
)
[27] => stdClass Object
(
[name] => lastUpdated
[label] => Last Updated
[isCustom] =>
[dataType] => Date
[isSearchable] =>
[isRequired] =>
[isReadOnly] => 1
[description] =>
[maxLength] => N/A
)
But when I receive the object, those two fields are not in there, however, the data is available when looking at a particular requestion in the GUI:
Added to System: | 5/2/12 3:36 PM | ID: | 3 | |
Last Updated: | 6/4/12 11:35 AM |
Is there something I'm missing to make those fields available in the object?