T2 - Documents Endpoints

/api/partner/1.0/t2/documents/getList (POST)

Endpoint authentication

When adopting OAuth 2.0 as an authentication method, the below security requirements are needed in order to trigger this endpoint:

  • The user must fulfill the below security roles requirements; if he fails to obtain access to all the necessary security roles, an error 403: Insufficient privileges to execute this request is returned:

    • The user must acquire access to the following security role:

      • Tax – Access T2 Product

  • This endpoint validates against the user’s contact security and document visibility. If the user does not have access to a given document or to the contact associated to this document, the document will not be included in the response body.

Endpoint description

Returns a list of documents with all metadata available in the return manager for a specific year of the T2 product.

Note: Requesting the list of documents for a taxation period supported by the latest T2 version will return the list of documents for all years supported by this version. For example, if the current latest version supports 2020 and later, this means that getting the list of documents for 2021 will return the list of documents present in the return manager for the 2020 and later versions:

Model

{

"cursor": "string",

"search": "string",

"perPage": 0,

"sortColumn": "string",

"sortOrder": "string",

"filters": {},

"excludePlanner": true,

"customReturnManagerFilterIds": [

0

]

}

Properties

cursor: Optional parameter used to navigate between the pages of the resulting response. The "nextCursor" and "prevCursor" parameters, returned in the response of this endpoint, provide the value to use for the cursor parameter.

When this parameter is included in a request, the other parameters will be ignored.

search: Optional parameter used for filtering out results based on a string search.

perPage: Optional parameter that controls the number of results per page (1-500). If you do not include the per page parameter, the application will default to 500.

sortColumn: Optional parameter to sort on a specific columnID. The list of columnIDs can be viewed here. If you do not include the sortColumn parameter, the application will sort using the date modified column.

sortOrder: Optional parameter used to sort in ascending or descending order. If you do not include the sortOrder parameter, the application will default to ascending order.

filters: Optional parameter used for filtering out results based on column(s) value(s). One or more columnIDs must be provided with values to use. The list of columnIDs is available here.

excludePlanner: Optional parameter used to include or exclude planner files. If you do not include the excludePlanner parameter, the application will include the planner documents by default.

customReturnManagerFilterIds: Optional parameter used for filtering out results based on a custom filter. The ID of the custom filter must be provided, it can be found in the URL of each custom filter under “Settings/Tax/Custom Diagnostics & Custom Filters”

Examples

Example of getting a list of returns where the reviewer ID is 1:

Request URL

https://mysite.cchifirm.ca/taxcan/api/partner/1.0/t2/documents/getList?returnManagerYear=2018

Request body

{

"perPage": 500,

"sortColumn": "date_modified",

"sortOrder": "Desc",

"filters": {

"reviewer_id": [

1

]

}

}

Response body

{

"result": [

{

"taxationStartDate": "2018-01-01",

"taxationEndDate": "2018-12-31",

"taxpayers": [

{

"name": "Kreiger, Stoltenberg and Torphy",

"businessNumber": "#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "JS-177176138",

"efileStatuses": {

"t2": "Not Eligible",

"t2mr69": "Not Applicable",

"t2054": "Not Applicable",

"sch89": "Not Applicable",

"albertarsi": "Not Applicable",

"co17": "Not Applicable",

"t2t1135": "Not Applicable",

"t1134": "Not Applicable",

"t106": "Not Applicable",

"rc4649": "Not Applicable",

"rc59": "Not Applicable",

"rc59x": "Not Applicable"

},

"eSignatureStatuses": {

"t183": "0",

"co1000": "0"

},

"preparer": null,

"reviewer": {

"userId": 1,

"firstName": "Marc",

"lastName": "Lacasse"

},

"partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"

}],

"documentId": "9d8c3443-fbe5-43d1-bb3f-d3e5eba79671",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "WebAPI Created",

"labelId": "46918af7-78dc-49bc-9a9d-c82218c18ba6",

"lastModificationTimestamp": "2021-04-22T17:38:24Z"

}],

"prevCursor": null,

"nextCursor": null,

"errors": []

}

Example of getting a list of returns where the date modified is between two timestamps:

Request URL

https://mysite.cchifirm.ca/taxcan/api/partner/1.0/t2/documents/getList?returnManagerYear=2018

Request body

{

"perPage": 500,

"sortColumn": "date_modified",

"sortOrder": "Desc",

"filters": {

"date_modified": [

"2021-04-21T01:11:45Z",

"2021-04-23T01:11:45Z"

]

}

}

Response body

{

"result": [

{

"taxationStartDate": "2018-01-01",

"taxationEndDate": "2018-12-31",

"taxpayers": [

{

"name": "Kreiger, Stoltenberg and Torphy",

"businessNumber": "#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "JS-177176138",

"efileStatuses": {

"t2": "Not Eligible",

"t2mr69": "Not Applicable",

"t2054": "Not Applicable",

"sch89": "Not Applicable",

"albertarsi": "Not Applicable",

"co17": "Not Applicable",

"t2t1135": "Not Applicable",

"t1134": "Not Applicable",

"t106": "Not Applicable",

"rc4649": "Not Applicable",

"rc59": "Not Applicable",

"rc59x": "Not Applicable"

},

"eSignatureStatuses": {

"t183": "0",

"co1000": "0"

},

"preparer": null,

"reviewer": {

"userId": 1,

"firstName": "Marc",

"lastName": "Lacasse"

},

"partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"

}],

"documentId": "9d8c3443-fbe5-43d1-bb3f-d3e5eba79671",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "WebAPI Created",

"labelId": "46918af7-78dc-49bc-9a9d-c82218c18ba6",

"lastModificationTimestamp": "2021-04-22T17:38:24Z"

}],

"prevCursor": null,

"nextCursor": null,

"errors": []

}

Example of getting a list of returns where the date modified starts from a specific date until this precise moment:

Request URL

https://mysite.cchifirm.ca/taxcan/api/partner/1.0/t2/documents/getList?returnManagerYear=2018

Request body

{

"perPage": 500,

"sortColumn": "date_modified",

"sortOrder": "Desc",

"filters": {

"date_modified": [

"2021-04-22T05:10:45Z"

]

}

}

Response body

{

"result": [

{

"taxationStartDate": "2018-01-01",

"taxationEndDate": "2018-12-31",

"taxpayers": [

{

"name": "Kreiger, Stoltenberg and Torphy",

"businessNumber": "#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "JS-177176138",

"efileStatuses": {

"t2": "Not Eligible",

"t2mr69": "Not Applicable",

"t2054": "Not Applicable",

"sch89": "Not Applicable",

"albertarsi": "Not Applicable",

"co17": "Not Applicable",

"t2t1135": "Not Applicable",

"t1134": "Not Applicable",

"t106": "Not Applicable",

"rc4649": "Not Applicable",

"rc59": "Not Applicable",

"rc59x": "Not Applicable"

},

"eSignatureStatuses": {

"t183": "0",

"co1000": "0"

},

"preparer": null,

"reviewer": {

"userId": 1,

"firstName": "Marc",

"lastName": "Lacasse"

},

"partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"

}],

"documentId": "9d8c3443-fbe5-43d1-bb3f-d3e5eba79671",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "WebAPI Created",

"labelId": "10ae1db5-1736-44c0-b8ea-7f18aea380a1",

"lastModificationTimestamp": "2021-04-22T17:38:24Z"

}],

"prevCursor": null,

"nextCursor": null,

"errors": []

}

Example of getting a list of returns where the T2 EFILE status is Eligible:

Request URL

https://mysite.cchifirm.ca/taxcan/api/partner/1.0/t2/documents/getList?returnManagerYear=2018

Request body

{

"perPage": 50,

"sortColumn": "date_modified",

"sortOrder": "Desc",

"filters": {

"t2_efile_status": [

"Eligible"

]

}

}

Response body

{

"result": [

{

"taxationStartDate": "2018-01-01",

"taxationEndDate": "2018-12-31",

"taxpayers": [

{

"name": "Jacobson, Dicki and Bashirian",

"businessNumber": "#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "768758758757649",

"efileStatuses": {

"t2": "Eligible",

"t2mr69": "Eligible",

"t2054": "Eligible",

"sch89": "Eligible",

"albertarsi": "Not Applicable",

"co17": "Eligible",

"t2t1135": "Eligible",

"t1134": "Eligible",

"t106": "Eligible",

"rc4649": "Eligible",

"rc59": "Eligible",

"rc59x": "Eligible"

},

"eSignatureStatuses": {

"t183": "0",

"co1000": "0"

},

"preparer": null,

"reviewer": null,

"partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"

}],

"documentId": "27ec43d8-3dbf-478d-9715-7fa509548e90",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "",

"labelId": "10ae1db5-1736-44c0-b8ea-7f18aea380a1",

"lastModificationTimestamp": "2021-04-06T17:01:46Z"

}],

"prevCursor": null,

"nextCursor": null,

"errors": []

}

Example of getting a list of returns that is filtered based on a Custom Filter:

Request URL

https://mysite.cchifirm.ca/taxcan/api/partner/1.0/t2/documents/getList?returnManagerYear=2018

Request body

{

"perPage": 50,

"sortColumn": "date_modified",

"sortOrder": "Desc",

"customReturnManagerFilterIds": [

337

]

}

Response body

{

"result": [

{

"taxationStartDate": "2018-01-01",

"taxationEndDate": "2018-12-31",

"taxpayers": [

{

"name": "Jacobson, Dicki and Bashirian",

"businessNumber": "#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "768758758757649",

"efileStatuses": {

"t2": "Eligible",

"t2mr69": "Eligible",

"t2054": "Eligible",

"sch89": "Eligible",

"albertarsi": "Not Applicable",

"co17": "Eligible",

"t2t1135": "Eligible",

"t1134": "Eligible",

"t106": "Eligible",

"rc4649": "Eligible",

"rc59": "Eligible",

"rc59x": "Eligible"

},

"eSignatureStatuses": {

"t183": 0,

"co1000": 0

},

"preparer": null,

"reviewer": null,

"partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"",

"columnValues": {

"337": {

"FDFTC.Ttwftc5": "103000.54",

"FDFTC.Ttwftc537": "15075",

}

}

}],

"documentId": "27ec43d8-3dbf-478d-9715-7fa509548e90",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "",

"labelId": "10ae1db5-1736-44c0-b8ea-7f18aea380a1",

"lastModificationTimestamp": "2021-04-06T17:01:46Z"

}],

"prevCursor": null,

"nextCursor": null,

"errors": []

}

/api/partner/1.0/t2/documents (POST)

Endpoint authentication

When adopting OAuth 2.0 as an authentication method, the below security requirements are needed in order to trigger this endpoint:

  • The user must fulfill the below security roles requirements; if he fails to obtain access to all the necessary security roles, an error 403: Insufficient privileges to execute this request is returned:

    • The user must acquire access to the following security roles:

      • Tax – Access T2 Product

      • Tax – Returns - Add and copy

  • This endpoint validates against the user’s contact security. If the user does not have access to the contact associated to the document he is requesting to create, an error 404: Resource not found in the system is returned.

Endpoint description

Creates a new T2 document and once created, returns the metadata of the new document including its ID. This endpoint can manage to create a document from both an existing contact or for a new contact.

Creating a T2 document from an existing contact.

Model

{

"taxYearStartDate": "2019-01-01",

"taxYearEndDate": "2019-12-31",

"details": "string",

"labelId": "00000000-0000-0000-0000-000000000000",

"existingClientCode": "string"

}

Properties

taxYearStartDate: Taxation year-start date of the document.

taxYearEndDate: Taxation year-end date of the document.

details: Details to add to the document (optional).

labelId: The value of the label to be associated to the document (optional).

existingClientCode: Client Code of the existing contact for which you want to create a document.

Creating a T2 document from a new contact

Model

{

"taxYearStartDate": "2019-01-01",

"taxYearEndDate": "2019-12-31",

"newClient": {

"businessNumber": "#########RC####",

"Name": "string",

"code": "string",

"group1Id": -1,

"group2Id": -1

},

"details": "string",

"labelId": "00000000-0000-0000-0000-000000000000"

}

Properties

taxYearStartDate: Taxation year-start date of the document.

taxYearEndDate: Taxation year-end date of the document.

businessNumber: Business number of the corporation.

name: Name of the corporation.

code: Client code of the new contact.

details: Details to add to the document (optional).

labelId: The value of the label to be associated to the document (optional).

group1Id: ID of the group1 option (optional: default to -1)

group2Id: ID of the group2 option (optional: default to -1)

Note: The “code” parameter is optional if the option Auto assign numeric client codes for new contacts has been enabled for your site.

Examples

 

Existing contact

New contact

Request URL

https://mysite.cchifirm.ca/taxcan/
api/partner/1.0/t2/documents

https://mysite.cchifirm.ca/taxcan/
api/partner/1.0/t2/documents

Request body

{

"taxYearStartDate": "2019-01-01",

"taxYearEndDate": "2019-12-31",

"details": "Copy-1",

"labelId": "415c4238-9117-d545-75k5-a6o5785bdba1",

"existingClientCode": "Abc123"

}

{

"taxYearStartDate": "2019-01-01",

"taxYearEndDate": "2019-12-31",

"newClient": {

"businessNumber": "#########RC####",

"Name": "WebAPI Incorporated",

"code": "Abc1234"

"group1Id": -1,

"group2Id": -1

},

"details": "Copy-2",

"labelId": "415c4238-9117-d545-75k5-a6o5785bdba1"

}

Response body

{

"result": {

"taxationStartDate": "2019-01-01",

"taxationEndDate": "2019-12-31",

"taxpayers": [

{

"name": "WebAPI Incorporated",

"businessNumber": "#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "Abc123",

"efileStatuses": {

"t2": "Not Eligible",

"t2mr69": "Not Applicable",

"t2054": "Not Applicable",

"sch89": "Not Applicable",

"albertarsi": "Not Applicable",

"co17": "Not Applicable",

"t2t1135": "Not Applicable",

"t1134": "Not Applicable",

"t106": "Not Applicable",

"rc4649": "Not Applicable",

"rc59": "Not Applicable",

"rc59x": "Not Applicable"

},

"eSignatureStatuses": {

"t183": "0",

"co1000": "0"

},

"preparer": null,

"reviewer": null,

"partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"

}

],

"documentId": "9747c3f6-446f-4f7d-a24e-eb2eea7b3a67",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "Copy-1",

"labelId": "415c4238-9117-d545-75k5-a6o5785bdba1",

"lastModificationTimestamp": "2020-09-23T12:40:52Z"

},

"errors": []

}

{

"result": {

"taxationStartDate": "2019-01-01",

"taxationEndDate": "2019-12-31",

"taxpayers": [

{

"name": "WebAPI Incorporated",

"businessNumber": "#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "Abc1234",

"efileStatuses": {

"t2": "Not Eligible",

"t2mr69": "Not Applicable",

"t2054": "Not Applicable",

"sch89": "Not Applicable",

"albertarsi": "Not Applicable",

"co17": "Not Applicable",

"t2t1135": "Not Applicable",

"t1134": "Not Applicable",

"t106": "Not Applicable",

"rc4649": "Not Applicable",

"rc59": "Not Applicable",

"rc59x": "Not Applicable"

},

"eSignatureStatuses": {

"t183": "0",

"co1000": "0"

},

"preparer": null,

"reviewer": null,

"partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"

}

],

"documentId": "a4fd922a-e119-42f8-b9d1-405fc6547dab",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "Copy-2",

"labelId": "415c4238-9117-d545-75k5-a6o5785bdba1",

"lastModificationTimestamp": "2020-09-23T12:46:25Z"

},

"errors": []

}

/api/partner/1.0/t2/documents/recycleBin (GET)

Endpoint authentication

When adopting OAuth 2.0 as an authentication method, the below security requirements are needed in order to trigger this endpoint:

  • The user must fulfill the below security roles requirements; if he fails to obtain access to all the necessary security roles, an error 403: Insufficient privileges to execute this request is returned:

    • The user must acquire access to the following security roles:

      • Tax – Access T2 Product

      • Tax – Recycle Bin – Access

  • • This endpoint validates against the user’s contact security and document visibility. If the user does not have access to a given document or to the contact associated to this document, the document will not be included in the response body.

Endpoint description

Returns a list of all T2 documents, with their associated metadata, that have been deleted and are in the recycle bin. This endpoint will also return all private documents that may not be visible to all users when accessing the recycle bin modal through the user interface.

Request URL

https://mysite.cchifirm.ca/taxcan/api/partner/1.0/t2/documents/recycleBin

Request body

N/A

Response body

{

"result": [{

"deletedBy": "UserName",

"deletedOn": "2023-04-07T14:50:26Z",

"taxationStartDate”: “2022-03-16”,

"taxationEndDate”: “2023-03-15”,

"taxpayers": [{

"name”: “Grant Inc",

"businessNumber": ""#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "10819",

"efileStatuses": {

"t2": "Not Eligible",

"t2mr69": "Not Applicable",

"t2054": "Not Eligible",

"sch89": "Not Applicable",

"albertarsi": "Not Applicable",

"co17": "Eligible",

"t2t1135": "Eligible",

"t1134": "Eligible",

"t106": "Eligible",

"rc4649": "Eligible",

"rc59": "Eligible",

"rc59x": "Eligible"

},

"eSignatureStatuses": {

"t183": "0",

"co1000": "0"

},

"Preparer": {

"userId": 39,

"firstname": "Marc",

"lastname": "Lacasse"

},

"Reviewer": {

"userId": 54,

"firstname": "Alex",

"lastname": "Tremblay"

},

"Partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"

}],

"documentId": "4e3f9358-9e0c-4488-a617-bd62f44b1a65",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "Details",

"labelId": "415c4238-9117-d545-75k5-a6o5785bdba1",

"lastModificationTimestamp": "2022-04-25T14:50:26Z"

}],

"errors": []

}

/api/partner/1.0/t2/documents/{documentId} (GET)

Endpoint authentication

When adopting OAuth 2.0 as an authentication method, the below security requirements are needed in order to trigger this endpoint:

  • The user must fulfill the below security roles requirements; if he fails to obtain access to all the necessary security roles, an error 403: Insufficient privileges to execute this request is returned:

    • The user must acquire access to the following security role:

      • Tax – Access T2 Product

  • This endpoint validates against the user’s contact security and document visibility. If the user does not have access to the document provided in the URL or the contact associated to this document, an error 404: Resource not found in the system is returned.

Endpoint description

Returns a specific T2 document with all metadata available in the return manager.

The GUID of the document must be inserted in the URL of the request.

Model

N/A

Properties

N/A

Examples

Request URL

https://mysite.cchifirm.ca/taxcan/api/partner/1.0/t2/documents/9747c3f6-446f-4f7d-a24e-eb2eea7b3a67

Request body

N/A

Response body

{

"result": {

"taxationStartDate": "2019-01-01",

"taxationEndDate": "2019-12-31",

"taxpayers": [

{

"name": "WebAPI Incorporated",

"businessNumber": "#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "Abc123",

"efileStatuses": {

"t2": "Not Eligible",

"t2mr69": "Not Applicable",

"t2054": "Not Applicable",

"sch89": "Not Applicable",

"albertarsi": "Not Applicable",

"co17": "Not Applicable",

"t2t1135": "Not Applicable",

"t1134": "Not Applicable",

"t106": "Not Applicable",

"rc4649": "Not Applicable",

"rc59": "Not Applicable",

"rc59x": "Not Applicable"

},

"eSignatureStatuses": {

"t183": "0",

"co1000": "0"

},

"preparer": null,

"reviewer": null,

"partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"

}

],

"documentId": "9747c3f6-446f-4f7d-a24e-eb2eea7b3a67",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "Copy-3",

"labelId": "415c4238-9117-d545-75k5-a6o5785bdba1",

"lastModificationTimestamp": "2020-09-23T12:40:52Z"

},

"errors": []

}

Note: The “group1Id” and “group2Id” properties are always returned in the document endpoint responses even if groups are not activated for your site. The ID -1 represents the “None” group option.

/api/partner/1.0/t2/documents/{documentId}/copy (POST)

Endpoint authentication

When adopting OAuth 2.0 as an authentication method, the below security requirements are needed in order to trigger this endpoint:

  • The user must fulfill the below security roles requirements; if he fails to obtain access to all the necessary security roles, an error 403: Insufficient privileges to execute this request is returned:

    • The user must acquire access to the following security roles:

      • Tax – Access T2 Product

      • Tax – Returns – Add and copy

  • This endpoint validates against the user’s contact security and document visibility. If the user does not have access to the document provided in the URL or the contact associated to this document, an error 404: Resource not found in the system is returned.

Endpoint description

Copies a specific document in the T2 product. The GUID of the document must be inserted in the URL of the request.

Model

{

"details": "string",

"labelId": "00000000-0000-0000-0000-000000000000"

}

Properties

details: Optional parameter to add details to the copied document.

labelId: Optional parameter to add a label to the copied document.

Examples

Request URL

https://mysite.cchifirm.ca/taxcan/api/partner/1.0/t2/documents/fedf6b5d-3d01-4276-899e-19fe2d222388/copy

Request body

{

"details": "Scenario 1",

"labelId": "415c4238-9117-d545-75k5-a6o5785bdba1"

}

Response body

{

"result": {

"taxationStartDate": "2019-01-01",

"taxationEndDate": "2019-12-31",

"taxpayers": [

{

"name": "WebAPI Incorporated",

"businessNumber": "#########RC####",

"noaStatus": "Not Downloaded",

"returnId": 0,

"clientCode": "Abc123",

"efileStatuses": {

"t2": "Not Eligible",

"t2mr69": "Not Applicable",

"t2054": "Not Applicable",

"sch89": "Not Applicable",

"albertarsi": "Not Applicable",

"co17": "Not Applicable",

"t2t1135": "Not Applicable",

"t1134": "Not Applicable",

"t106": "Not Applicable",

"rc4649": "Not Applicable",

"rc59": "Not Applicable",

"rc59x": "Not Applicable"

},

"eSignatureStatuses": {

"t183": "0",

"co1000": "0"

},

"preparer": null,

"reviewer": null,

"partner": null,

"returnStatusId": "415c4238-9117-d545-85b5-a6c5717bdba1",

"group1Id": -1,

"group2Id": -1,

"environmentId": "d6d50e87-7189-4ac9-b136-cc849412f4c3"

}],

"documentId": "9747c3f6-446f-4f7d-a24e-eb2eea7b3a67",

"isLocked": false,

"isPrivate": false,

"wasRolledForward": false,

"details": "Scenario 1",

"labelId": "415c4238-9117-d545-75k5-a6o5785bdba1",

"lastModificationTimestamp": "2020-09-23T12:40:52Z"

},

"errors": []

}

wasRolledForward parameter limitation

The parameter "wasRolledForward" is returned for every year and period. However, the parameter will display the “false” default value for all T2 documents prior to 2018.