Date Time Format

REQUEST:

Textura Data-as-a-Service currently expects all DateTime filters in the following format:

If the value for the DateTime filters in the request does not comply with the above format, you will receive an Invalid isoformat Error.

Example values of the Request Format:

query ProjectQuery {

project(

organizationID: <organizationID>

offset: 0

next: 1

dateModifiedBegin: "2020-01-01T00:00"

) {

id

dateModified

originalEstimatedStartDate

}

}

RESPONSE:

Textura Data-as-a-Service currently returns either Date or Datetime for the Date related field. Refer to the References->Type section to know more about which field returns what type.

Fields of the DateTime datatype return responses in the following format: yyyy-MM-dd HH:mm:ss (for example, 2023-07-15 10:30:00).

Fields of the Date datatype return responses in the following format: yyyy-MM-dd (for example, 2023-07-15).

Example values of the Response:

{

"data": {

"project": [

{

"id": 1,

"dateModified": "2025-06-05 08:25:48",

"originalEstimatedStartDate": "2025-06-06"

}

]

}

}



Last Published Friday, September 5, 2025