ticket

 avatar
unknown
plain_text
2 years ago
31 kB
7
Indexable
Search through the following requests:

https://api2.ingeniousdev.build/api/v1/click5/sc/mobile/task/5e6c15e975af37569c342437 (fetch task details)
https://api2.ingeniousdev.build/api/v1/click5/sc/invitation/batch (get members list)
https://api2.ingeniousdev.build/api/v1/click5/sc/invitation/batch (save members)
https://api2.ingeniousdev.build/api/v1/click5/sc/get-invitations-for-resource (get newly saved members)

Either in body or in response one gets or have to prepare various models for the requests that basically differ from each other with name of a field or type of data. 

I will give some examples:

EXAMPLE A)

POST https://api2.ingeniousdev.build/api/v1/click5/sc/get-invitations-for-resource

with body: 

{
  "type": "task",
  "model_id": "63dc2ddfda54752b01002582"
}

he then gets the following response:

{
  "56fa7a7c8c4ac51e3c4d5b61": {
    "company": {
      "app_type": "sub",
      "company_name": "SUBcontractorTest DEV",
      "company_id": "56fa7a7c8c4ac51e3c4d5b61",
      "logo": null
    },
    "invited": [
      {
        "id": "5daf354d3dfcab73c411cc02",
        "email": "sebastian+arach2@ingeniousio.com",
        "firstname": "Abastian2",
        "lastname": "Arach2",
        "is_employee": true,
        "app_type": "sub",
        "company_name": "SUBcontractorTest DEV",
        "company_id": "56fa7a7c8c4ac51e3c4d5b61",
        "avatar": null,
        "invitation_status": "saved"
      },
      {
        "id": "5d09f05f3dfcab6b1915f013",
        "email": "xp5awel115@gmail.com",
        "firstname": "Pawel",
        "lastname": "Ras",
        "is_employee": true,
        "app_type": "sub",
        "company_name": "SUBcontractorTest DEV",
        "company_id": "56fa7a7c8c4ac51e3c4d5b61",
        "avatar": "fbcc4e40-a2de-41da-a15f-ff0bca8a49dd",
        "invitation_status": "saved"
      },
      {
        "id": "5d09f05f3dfcab6b1915f013",
        "email": "xp5awel115@gmail.com",
        "firstname": "Pawel",
        "lastname": "Ras",
        "is_employee": true,
        "app_type": "sub",
        "company_name": "SUBcontractorTest DEV",
        "company_id": "56fa7a7c8c4ac51e3c4d5b61",
        "avatar": "fbcc4e40-a2de-41da-a15f-ff0bca8a49dd",
        "invitation_status": "saved"
      },
      {
        "id": "5ef218c9c15e8c5018674f02",
        "email": "tomek+pola@ingeniousio.com",
        "firstname": "1pola",
        "lastname": "pola2",
        "is_employee": true,
        "app_type": "sub",
        "company_name": "SUBcontractorTest DEV",
        "company_id": "56fa7a7c8c4ac51e3c4d5b61",
        "avatar": null,
        "invitation_status": "saved"
      },
      {
        "id": "5d7915c47587af78aa0f0ab2",
        "email": "sebastian@ingeniousio.com",
        "firstname": "Abastian",
        "lastname": "Arach",
        "is_employee": true,
        "app_type": "sub",
        "company_name": "SUBcontractorTest DEV",
        "company_id": "56fa7a7c8c4ac51e3c4d5b61",
        "avatar": null,
        "invitation_status": "saved"
      }
    ]
  },
  "5bad415cefff81585f261e83": {
    "company": {
      "app_type": "gc",
      "company_name": "AGC",
      "company_id": "5bad415cefff81585f261e83",
      "logo": "3ca9c99c-70c0-4406-a8d4-7ebaac766f71"
    },
    "invited": {
      "5": {
        "id": "2550b9f2-2b65-4c72-b187-590595a77e04",
        "email": "1234@gmail.com",
        "firstname": "123@gmail.com",
        "lastname": "Paultest",
        "is_employee": true,
        "app_type": "gc",
        "company_name": "AGC",
        "company_id": "5bad415cefff81585f261e83",
        "avatar": null,
        "invitation_status": "saved"
      }
    }
  }
}

As you can see above there are two models with names 56fa7a7c8c4ac51e3c4d5b61 and 5bad415cefff81585f261e83 in the first one there is a company model and an array of Member model, but in the next one a company model and then poof... a dictionary! This is a big inconsistency and create problems. Also, happens randomly from what I've experienced

EXAMPLE B)

When making the same request as in A) we get the response as an array of company and member models pairs. In this response the field representing members is named "invited". However, when fetching task details ( GET request https://api2.ingeniousdev.build/api/v1/click5/sc/mobile/task/{task-id} )for the field _attached_companies_employees we get the same array of company and member models pairs, but for the members the field is named "employees". Why make it inconcinstent? It's far easier to use the same models (with the same naming for the fields)

EXAMPLE C)

While we're on task details: it's super convoluted which data to take for the task details' members if in the task details there are numerous fields showing something that looks like member model (sometimes not exactly, but in a way). For example in the response there are fields like the aforementioned _attached_companies_employees, but also on_item, invited, invited_pending and invited_people and have no company information like the responses for A) requests

Take a look:

GET https://api2.ingeniousdev.build/api/v1/click5/sc/mobile/task/5db84b877587af77f40cd722

response:

{
  "task": {
    "id": "5db84b877587af77f40cd722",
    "name": "d - d.0 ",
    "description": "fsdfdsf",
    "status": 100,
    "type": "General",
    "subtype": 0,
    "priority": 5,
    "start_date": null,
    "due_date": "2019-10-30T12:00:00.000000Z",
    "anticipated_date": null,
    "tags": [
      "d - d.0 "
    ],
    "risk_tags": [
      {
        "value": 1,
        "name": "low",
        "color": "#60d094"
      },
      {
        "value": 3,
        "name": "medium",
        "color": "#edb208"
      },
      {
        "value": 5,
        "name": "high",
        "color": "#f26666"
      }
    ],
    "risk_tag": null,
    "show_risk_tag": false,
    "smart_tags": [
      {
        "name": "d - d.0 ",
        "is_system": false
      }
    ],
    "related_item_id": "5db8486e7587af707f353924",
    "related_item_type": 5,
    "_project_id": null,
    "stamp": null,
    "related_item_name": "d",
    "is_completed": false,
    "is_locked": true,
    "drawing_version": null,
    "originator": {
      "id": "599dde582220860a513469d2",
      "first_name": "Johny",
      "last_name": "Smith",
      "avatar": "14432e25-dd3e-4e0b-9511-bc8ef5ad65d9"
    },
    "checklist": [],
    "phases": null,
    "attached": [
      {
        "id": 188,
        "first_name": "Johny",
        "last_name": "Smith",
        "avatar": "https://api2.ingeniousdev.build/api/v1/click5/sc/file/avatar/599dde582220860a513469d2"
      },
      {
        "id": 3433,
        "first_name": "1pola",
        "last_name": "pola2",
        "avatar": "/images/user-avatar-default.png"
      },
      {
        "id": 3104,
        "first_name": "Pawel",
        "last_name": "Ras",
        "avatar": "https://api2.ingeniousdev.build/api/v1/click5/sc/file/avatar/5d09f05f3dfcab6b1915f013"
      },
      {
        "id": 3104,
        "first_name": "Pawel",
        "last_name": "Ras",
        "avatar": "https://api2.ingeniousdev.build/api/v1/click5/sc/file/avatar/5d09f05f3dfcab6b1915f013"
      },
      {
        "id": 3221,
        "first_name": "Abastian",
        "last_name": "Arach",
        "avatar": "/images/user-avatar-default.png"
      },
      {
        "id": 3325,
        "first_name": "Abastian2",
        "last_name": "Arach2",
        "avatar": "/images/user-avatar-default.png"
      },
      {
        "id": 3104,
        "first_name": "Pawel",
        "last_name": "Ras",
        "avatar": "https://api2.ingeniousdev.build/api/v1/click5/sc/file/avatar/5d09f05f3dfcab6b1915f013"
      },
      {
        "id": 3379,
        "first_name": "Admin",
        "last_name": "User",
        "avatar": "/images/user-avatar-default.png"
      },
      {
        "id": 3379,
        "first_name": "Admin",
        "last_name": "User",
        "avatar": "/images/user-avatar-default.png"
      },
      {
        "id": 3104,
        "first_name": "Pawel",
        "last_name": "Ras",
        "avatar": "https://api2.ingeniousdev.build/api/v1/click5/sc/file/avatar/5d09f05f3dfcab6b1915f013"
      },
      {
        "id": 3104,
        "first_name": "Pawel",
        "last_name": "Ras",
        "avatar": "https://api2.ingeniousdev.build/api/v1/click5/sc/file/avatar/5d09f05f3dfcab6b1915f013"
      },
      {
        "id": 3104,
        "first_name": "Pawel",
        "last_name": "Ras",
        "avatar": "https://api2.ingeniousdev.build/api/v1/click5/sc/file/avatar/5d09f05f3dfcab6b1915f013"
      },
      {
        "id": 3104,
        "first_name": "Pawel",
        "last_name": "Ras",
        "avatar": "https://api2.ingeniousdev.build/api/v1/click5/sc/file/avatar/5d09f05f3dfcab6b1915f013"
      }
    ],
    "project": {
      "id": "5db8486e7587af707f353924",
      "name": "d"
    },
    "invited_pending": [
      {
        "id": "198959c6-0ef5-445a-8eb8-268a240f39cd",
        "resource_id": "5db84b877587af77f40cd722",
        "resource_type": "task",
        "sender_project_local_id": null,
        "receiver_project_local_id": null,
        "section": "default",
        "sender_person_workspace_id": "599dde582220860a513469d2",
        "recipient_person_workspace_id": "f80394cc-60ec-4632-a815-f2fa6525cd83",
        "is_on_hold": 1,
        "is_internal": 0,
        "skip_notifications": 0,
        "has_to_be_approved": 0,
        "approved_at": null,
        "approved_by": null,
        "denied_at": null,
        "denied_by": null,
        "rejected_at": null,
        "rejected_by": null,
        "reject_reason": null,
        "accepted_at": null,
        "accepted_by": null,
        "created_at": "2023-01-23T22:49:22.000000Z",
        "created_by": "599dde582220860a513469d2",
        "updated_at": "2023-01-23T22:49:22.000000Z",
        "updated_by": null,
        "deleted_at": null,
        "deleted_by": null,
        "app_type": null,
        "proxy_company_id": "baba7e54-ddb2-4c0b-822c-c0c02b29c21e",
        "email": "test@gmail.com",
        "receiver_person_workspace": {
          "id": "f80394cc-60ec-4632-a815-f2fa6525cd83",
          "shared_person_id": "f1938eab-635c-4584-bf37-3dc9fc14f0d2",
          "shared_workspace_id": "baba7e54-ddb2-4c0b-822c-c0c02b29c21e",
          "shared_person": {
            "id": "f1938eab-635c-4584-bf37-3dc9fc14f0d2",
            "email": "test@gmail.com",
            "email_confirmed_at": null,
            "can_login": 1,
            "created_at": "2020-02-28T12:06:08.000000Z",
            "created_by": "599dde582220860a513469d2",
            "updated_at": "2022-04-19T18:43:26.000000Z",
            "updated_by": null,
            "deleted_at": null,
            "deleted_by": null
          }
        },
        "sender_person_workspace": {
          "id": "599dde582220860a513469d2",
          "shared_person_id": "5a920253-1d6d-48b7-add0-0d80f744fc04",
          "shared_workspace_id": "56fa7a7c8c4ac51e3c4d5b61"
        }
      },
      {
        "id": "2312ef5f-8d1f-49b7-87b2-3684e7db9525",
        "resource_id": "5db84b877587af77f40cd722",
        "resource_type": "task",
        "sender_project_local_id": null,
        "receiver_project_local_id": null,
        "section": "default",
        "sender_person_workspace_id": "599dde582220860a513469d2",
        "recipient_person_workspace_id": "63457eebfc902fd2b30683aa",
        "is_on_hold": 1,
        "is_internal": 0,
        "skip_notifications": 0,
        "has_to_be_approved": 0,
        "approved_at": null,
        "approved_by": null,
        "denied_at": null,
        "denied_by": null,
        "rejected_at": null,
        "rejected_by": null,
        "reject_reason": null,
        "accepted_at": null,
        "accepted_by": null,
        "created_at": "2023-02-01T00:15:34.000000Z",
        "created_by": "599dde582220860a513469d2",
        "updated_at": "2023-02-01T00:15:34.000000Z",
        "updated_by": null,
        "deleted_at": null,
        "deleted_by": null,
        "app_type": "dev",
        "proxy_company_id": "5b918ea18f0f704303274092",
        "email": "alex+devreparchivedadmin@ingeniousio.com",
        "company_name": "DEV Owner's Representative",
        "firstname": "Archived",
        "lastname": "Admin",
        "avatar": "70ff9e2d-b8d7-4916-8f02-f4c25bc09168",
        "job_title": "",
        "cell_phone": "(222) 222-2222",
        "office_phone": "(111) 111-1111",
        "receiver_person_workspace": {
          "id": "63457eebfc902fd2b30683aa",
          "shared_person_id": "a60942e5-1c72-487f-a743-4caf626baac6",
          "shared_workspace_id": "5b918ea18f0f704303274092",
          "shared_person": {
            "id": "a60942e5-1c72-487f-a743-4caf626baac6",
            "email": "alex+devreparchivedadmin@ingeniousio.com",
            "email_confirmed_at": "2022-10-11T14:36:26.000000Z",
            "can_login": 1,
            "created_at": "2022-10-11T14:34:19.000000Z",
            "created_by": "5e986a2e1de42a46c76b7c92",
            "updated_at": "2022-10-11T14:36:26.000000Z",
            "updated_by": null,
            "deleted_at": null,
            "deleted_by": null
          }
        },
        "sender_person_workspace": {
          "id": "599dde582220860a513469d2",
          "shared_person_id": "5a920253-1d6d-48b7-add0-0d80f744fc04",
          "shared_workspace_id": "56fa7a7c8c4ac51e3c4d5b61"
        }
      },
      {
        "id": "45f289b2-a0ee-45f0-898f-8f7b028dc570",
        "resource_id": "5db84b877587af77f40cd722",
        "resource_type": "task",
        "sender_project_local_id": null,
        "receiver_project_local_id": null,
        "section": "default",
        "sender_person_workspace_id": "599dde582220860a513469d2",
        "recipient_person_workspace_id": "2550b9f2-2b65-4c72-b187-590595a77e04",
        "is_on_hold": 1,
        "is_internal": 0,
        "skip_notifications": 0,
        "has_to_be_approved": 0,
        "approved_at": null,
        "approved_by": null,
        "denied_at": null,
        "denied_by": null,
        "rejected_at": null,
        "rejected_by": null,
        "reject_reason": null,
        "accepted_at": null,
        "accepted_by": null,
        "created_at": "2023-01-23T19:07:21.000000Z",
        "created_by": "599dde582220860a513469d2",
        "updated_at": "2023-01-23T19:07:21.000000Z",
        "updated_by": null,
        "deleted_at": null,
        "deleted_by": null,
        "app_type": "gc",
        "proxy_company_id": "5bad415cefff81585f261e83",
        "email": "1234@gmail.com",
        "receiver_person_workspace": {
          "id": "2550b9f2-2b65-4c72-b187-590595a77e04",
          "shared_person_id": "71edea69-ddfa-4fc3-9bc0-c51615f58a17",
          "shared_workspace_id": "5bad415cefff81585f261e83",
          "shared_person": {
            "id": "71edea69-ddfa-4fc3-9bc0-c51615f58a17",
            "email": "1234@gmail.com",
            "email_confirmed_at": null,
            "can_login": 0,
            "created_at": "2019-07-23T19:24:34.000000Z",
            "created_by": null,
            "updated_at": "2021-04-28T07:25:25.000000Z",
            "updated_by": "599dde582220860a513469d2",
            "deleted_at": null,
            "deleted_by": null
          }
        },
        "sender_person_workspace": {
          "id": "599dde582220860a513469d2",
          "shared_person_id": "5a920253-1d6d-48b7-add0-0d80f744fc04",
          "shared_workspace_id": "56fa7a7c8c4ac51e3c4d5b61"
        }
      },
      {
        "id": "5682deaa-d3f1-4356-a9b6-c0f00e727447",
        "resource_id": "5db84b877587af77f40cd722",
        "resource_type": "task",
        "sender_project_local_id": null,
        "receiver_project_local_id": null,
        "section": "default",
        "sender_person_workspace_id": "599dde582220860a513469d2",
        "recipient_person_workspace_id": "63457eebfc902fd2b30683aa",
        "is_on_hold": 1,
        "is_internal": 0,
        "skip_notifications": 0,
        "has_to_be_approved": 0,
        "approved_at": null,
        "approved_by": null,
        "denied_at": null,
        "denied_by": null,
        "rejected_at": null,
        "rejected_by": null,
        "reject_reason": null,
        "accepted_at": null,
        "accepted_by": null,
        "created_at": "2023-01-23T22:49:23.000000Z",
        "created_by": "599dde582220860a513469d2",
        "updated_at": "2023-01-23T22:49:23.000000Z",
        "updated_by": null,
        "deleted_at": null,
        "deleted_by": null,
        "app_type": "dev",
        "proxy_company_id": "5b918ea18f0f704303274092",
        "email": "alex+devreparchivedadmin@ingeniousio.com",
        "company_name": "DEV Owner's Representative",
        "firstname": "Archived",
        "lastname": "Admin",
        "avatar": "70ff9e2d-b8d7-4916-8f02-f4c25bc09168",
        "job_title": "",
        "cell_phone": "(222) 222-2222",
        "office_phone": "(111) 111-1111",
        "receiver_person_workspace": {
          "id": "63457eebfc902fd2b30683aa",
          "shared_person_id": "a60942e5-1c72-487f-a743-4caf626baac6",
          "shared_workspace_id": "5b918ea18f0f704303274092",
          "shared_person": {
            "id": "a60942e5-1c72-487f-a743-4caf626baac6",
            "email": "alex+devreparchivedadmin@ingeniousio.com",
            "email_confirmed_at": "2022-10-11T14:36:26.000000Z",
            "can_login": 1,
            "created_at": "2022-10-11T14:34:19.000000Z",
            "created_by": "5e986a2e1de42a46c76b7c92",
            "updated_at": "2022-10-11T14:36:26.000000Z",
            "updated_by": null,
            "deleted_at": null,
            "deleted_by": null
          }
        },
        "sender_person_workspace": {
          "id": "599dde582220860a513469d2",
          "shared_person_id": "5a920253-1d6d-48b7-add0-0d80f744fc04",
          "shared_workspace_id": "56fa7a7c8c4ac51e3c4d5b61"
        }
      },
      {
        "id": "64fdab36-383d-4d55-a069-6876f572977d",
        "resource_id": "5db84b877587af77f40cd722",
        "resource_type": "task",
        "sender_project_local_id": null,
        "receiver_project_local_id": null,
        "section": "default",
        "sender_person_workspace_id": "599dde582220860a513469d2",
        "recipient_person_workspace_id": "63457eebfc902fd2b30683aa",
        "is_on_hold": 1,
        "is_internal": 0,
        "skip_notifications": 0,
        "has_to_be_approved": 0,
        "approved_at": null,
        "approved_by": null,
        "denied_at": null,
        "denied_by": null,
        "rejected_at": null,
        "rejected_by": null,
        "reject_reason": null,
        "accepted_at": null,
        "accepted_by": null,
        "created_at": "2023-02-01T18:35:33.000000Z",
        "created_by": "599dde582220860a513469d2",
        "updated_at": "2023-02-01T18:35:33.000000Z",
        "updated_by": null,
        "deleted_at": null,
        "deleted_by": null,
        "app_type": "dev",
        "proxy_company_id": "5b918ea18f0f704303274092",
        "email": "alex+devreparchivedadmin@ingeniousio.com",
        "company_name": "DEV Owner's Representative",
        "firstname": "Archived",
        "lastname": "Admin",
        "avatar": "70ff9e2d-b8d7-4916-8f02-f4c25bc09168",
        "job_title": "",
        "cell_phone": "(222) 222-2222",
        "office_phone": "(111) 111-1111",
        "receiver_person_workspace": {
          "id": "63457eebfc902fd2b30683aa",
          "shared_person_id": "a60942e5-1c72-487f-a743-4caf626baac6",
          "shared_workspace_id": "5b918ea18f0f704303274092",
          "shared_person": {
            "id": "a60942e5-1c72-487f-a743-4caf626baac6",
            "email": "alex+devreparchivedadmin@ingeniousio.com",
            "email_confirmed_at": "2022-10-11T14:36:26.000000Z",
            "can_login": 1,
            "created_at": "2022-10-11T14:34:19.000000Z",
            "created_by": "5e986a2e1de42a46c76b7c92",
            "updated_at": "2022-10-11T14:36:26.000000Z",
            "updated_by": null,
            "deleted_at": null,
            "deleted_by": null
          }
        },
        "sender_person_workspace": {
          "id": "599dde582220860a513469d2",
          "shared_person_id": "5a920253-1d6d-48b7-add0-0d80f744fc04",
          "shared_workspace_id": "56fa7a7c8c4ac51e3c4d5b61"
        }
      },
      {
        "id": "9ea26b6f-d828-4a14-97b5-709cc8db7179",
        "resource_id": "5db84b877587af77f40cd722",
        "resource_type": "task",
        "sender_project_local_id": null,
        "receiver_project_local_id": null,
        "section": "default",
        "sender_person_workspace_id": "599dde582220860a513469d2",
        "recipient_person_workspace_id": "14be4430-b467-4c29-b5eb-bc51f0232b9e",
        "is_on_hold": 1,
        "is_internal": 0,
        "skip_notifications": 0,
        "has_to_be_approved": 0,
        "approved_at": null,
        "approved_by": null,
        "denied_at": null,
        "denied_by": null,
        "rejected_at": null,
        "rejected_by": null,
        "reject_reason": null,
        "accepted_at": null,
        "accepted_by": null,
        "created_at": "2023-02-01T18:35:33.000000Z",
        "created_by": "599dde582220860a513469d2",
        "updated_at": "2023-02-01T18:35:33.000000Z",
        "updated_by": null,
        "deleted_at": null,
        "deleted_by": null,
        "app_type": null,
        "proxy_company_id": "663e4faa-2485-4531-b03a-85baf650a812",
        "email": "adam@abdelwahed.com",
        "receiver_person_workspace": {
          "id": "14be4430-b467-4c29-b5eb-bc51f0232b9e",
          "shared_person_id": "e1d8da37-6f37-4b99-9698-5bdf3fc91115",
          "shared_workspace_id": "663e4faa-2485-4531-b03a-85baf650a812",
          "shared_person": {
            "id": "e1d8da37-6f37-4b99-9698-5bdf3fc91115",
            "email": "adam@abdelwahed.com",
            "email_confirmed_at": null,
            "can_login": 0,
            "created_at": "2016-07-26T15:16:30.000000Z",
            "created_by": "5981a9ed22208629c14bbca2",
            "updated_at": "2021-07-30T13:23:26.000000Z",
            "updated_by": "599dde582220860a513469d2",
            "deleted_at": null,
            "deleted_by": null
          }
        },
        "sender_person_workspace": {
          "id": "599dde582220860a513469d2",
          "shared_person_id": "5a920253-1d6d-48b7-add0-0d80f744fc04",
          "shared_workspace_id": "56fa7a7c8c4ac51e3c4d5b61"
        }
      },
      {
        "id": "c67a1b14-3c26-47fe-8d39-273cbe2b37c7",
        "resource_id": "5db84b877587af77f40cd722",
        "resource_type": "task",
        "sender_project_local_id": null,
        "receiver_project_local_id": null,
        "section": "default",
        "sender_person_workspace_id": "599dde582220860a513469d2",
        "recipient_person_workspace_id": "63457eebfc902fd2b30683aa",
        "is_on_hold": 1,
        "is_internal": 0,
        "skip_notifications": 0,
        "has_to_be_approved": 0,
        "approved_at": null,
        "approved_by": null,
        "denied_at": null,
        "denied_by": null,
        "rejected_at": null,
        "rejected_by": null,
        "reject_reason": null,
        "accepted_at": null,
        "accepted_by": null,
        "created_at": "2023-02-02T18:31:17.000000Z",
        "created_by": "599dde582220860a513469d2",
        "updated_at": "2023-02-02T18:31:17.000000Z",
        "updated_by": null,
        "deleted_at": null,
        "deleted_by": null,
        "app_type": "dev",
        "proxy_company_id": "5b918ea18f0f704303274092",
        "email": "alex+devreparchivedadmin@ingeniousio.com",
        "company_name": "DEV Owner's Representative",
        "firstname": "Archived",
        "lastname": "Admin",
        "avatar": "70ff9e2d-b8d7-4916-8f02-f4c25bc09168",
        "job_title": "",
        "cell_phone": "(222) 222-2222",
        "office_phone": "(111) 111-1111",
        "receiver_person_workspace": {
          "id": "63457eebfc902fd2b30683aa",
          "shared_person_id": "a60942e5-1c72-487f-a743-4caf626baac6",
          "shared_workspace_id": "5b918ea18f0f704303274092",
          "shared_person": {
            "id": "a60942e5-1c72-487f-a743-4caf626baac6",
            "email": "alex+devreparchivedadmin@ingeniousio.com",
            "email_confirmed_at": "2022-10-11T14:36:26.000000Z",
            "can_login": 1,
            "created_at": "2022-10-11T14:34:19.000000Z",
            "created_by": "5e986a2e1de42a46c76b7c92",
            "updated_at": "2022-10-11T14:36:26.000000Z",
            "updated_by": null,
            "deleted_at": null,
            "deleted_by": null
          }
        },
        "sender_person_workspace": {
          "id": "599dde582220860a513469d2",
          "shared_person_id": "5a920253-1d6d-48b7-add0-0d80f744fc04",
          "shared_workspace_id": "56fa7a7c8c4ac51e3c4d5b61"
        }
      },
      {
        "id": "cd60fa99-fbd0-447c-806e-ce922bd0fd14",
        "resource_id": "5db84b877587af77f40cd722",
        "resource_type": "task",
        "sender_project_local_id": null,
        "receiver_project_local_id": null,
        "section": "default",
        "sender_person_workspace_id": "599dde582220860a513469d2",
        "recipient_person_workspace_id": "63457eebfc902fd2b30683aa",
        "is_on_hold": 1,
        "is_internal": 0,
        "skip_notifications": 0,
        "has_to_be_approved": 0,
        "approved_at": null,
        "approved_by": null,
        "denied_at": null,
        "denied_by": null,
        "rejected_at": null,
        "rejected_by": null,
        "reject_reason": null,
        "accepted_at": null,
        "accepted_by": null,
        "created_at": "2023-02-01T00:13:44.000000Z",
        "created_by": "599dde582220860a513469d2",
        "updated_at": "2023-02-01T00:13:44.000000Z",
        "updated_by": null,
        "deleted_at": null,
        "deleted_by": null,
        "app_type": "dev",
        "proxy_company_id": "5b918ea18f0f704303274092",
        "email": "alex+devreparchivedadmin@ingeniousio.com",
        "company_name": "DEV Owner's Representative",
        "firstname": "Archived",
        "lastname": "Admin",
        "avatar": "70ff9e2d-b8d7-4916-8f02-f4c25bc09168",
        "job_title": "",
        "cell_phone": "(222) 222-2222",
        "office_phone": "(111) 111-1111",
        "receiver_person_workspace": {
          "id": "63457eebfc902fd2b30683aa",
          "shared_person_id": "a60942e5-1c72-487f-a743-4caf626baac6",
          "shared_workspace_id": "5b918ea18f0f704303274092",
          "shared_person": {
            "id": "a60942e5-1c72-487f-a743-4caf626baac6",
            "email": "alex+devreparchivedadmin@ingeniousio.com",
            "email_confirmed_at": "2022-10-11T14:36:26.000000Z",
            "can_login": 1,
            "created_at": "2022-10-11T14:34:19.000000Z",
            "created_by": "5e986a2e1de42a46c76b7c92",
            "updated_at": "2022-10-11T14:36:26.000000Z",
            "updated_by": null,
            "deleted_at": null,
            "deleted_by": null
          }
        },
        "sender_person_workspace": {
          "id": "599dde582220860a513469d2",
          "shared_person_id": "5a920253-1d6d-48b7-add0-0d80f744fc04",
          "shared_workspace_id": "56fa7a7c8c4ac51e3c4d5b61"
        }
      },
      {
        "id": "ebb82964-d650-4490-913e-55d043e4dede",
        "resource_id": "5db84b877587af77f40cd722",
        "resource_type": "task",
        "sender_project_local_id": null,
        "receiver_project_local_id": null,
        "section": "default",
        "sender_person_workspace_id": "599dde582220860a513469d2",
        "recipient_person_workspace_id": "63457eebfc902fd2b30683aa",
        "is_on_hold": 1,
        "is_internal": 0,
        "skip_notifications": 0,
        "has_to_be_approved": 0,
        "approved_at": null,
        "approved_by": null,
        "denied_at": null,
        "denied_by": null,
        "rejected_at": null,
        "rejected_by": null,
        "reject_reason": null,
        "accepted_at": null,
        "accepted_by": null,
        "created_at": "2023-02-01T12:16:42.000000Z",
        "created_by": "599dde582220860a513469d2",
        "updated_at": "2023-02-01T12:16:42.000000Z",
        "updated_by": null,
        "deleted_at": null,
        "deleted_by": null,
        "app_type": "dev",
        "proxy_company_id": "5b918ea18f0f704303274092",
        "email": "alex+devreparchivedadmin@ingeniousio.com",
        "company_name": "DEV Owner's Representative",
        "firstname": "Archived",
        "lastname": "Admin",
        "avatar": "70ff9e2d-b8d7-4916-8f02-f4c25bc09168",
        "job_title": "",
        "cell_phone": "(222) 222-2222",
        "office_phone": "(111) 111-1111",
        "receiver_person_workspace": {
          "id": "63457eebfc902fd2b30683aa",
          "shared_person_id": "a60942e5-1c72-487f-a743-4caf626baac6",
          "shared_workspace_id": "5b918ea18f0f704303274092",
          "shared_person": {
            "id": "a60942e5-1c72-487f-a743-4caf626baac6",
            "email": "alex+devreparchivedadmin@ingeniousio.com",
            "email_confirmed_at": "2022-10-11T14:36:26.000000Z",
            "can_login": 1,
            "created_at": "2022-10-11T14:34:19.000000Z",
            "created_by": "5e986a2e1de42a46c76b7c92",
            "updated_at": "2022-10-11T14:36:26.000000Z",
            "updated_by": null,
            "deleted_at": null,
            "deleted_by": null
          }
        },
        "sender_person_workspace": {
          "id": "599dde582220860a513469d2",
          "shared_person_id": "5a920253-1d6d-48b7-add0-0d80f744fc04",
          "shared_workspace_id": "56fa7a7c8c4ac51e3c4d5b61"
        }
      }
    ],
    "invited_people": [],
    "actual_date": null,
    "invitations_data": {
      "attached_employees": [
        {
          "_id": 188,
          "type": 3
        },
        {
          "_id": 3433,
          "type": 3
        },
        {
          "_id": 3104,
          "type": 3
        },
        {
          "_id": 3104,
          "type": 3
        },
        {
          "_id": 3221,
          "type": 3
        },
        {
          "_id": 3325,
          "type": 3
        },
        {
          "_id": 3104,
          "type": 3
        },
        {
          "_id": 3379,
          "type": 3
        },
        {
          "_id": 3379,
          "type": 3
        },
        {
          "_id": 3104,
          "type": 3
        },
        {
          "_id": 3104,
          "type": 3
        },
        {
          "_id": 3104,
          "type": 3
        },
        {
          "_id": 3104,
          "type": 3
        }
      ],
      "invited_people": [],
      "invited": null,
      "invited_pending": []
    }
  }
}
Editor is loading...