Update Contact Property Group

PUT https://app.alaaqat.com/api/deals/properties/groups/{_id}

_id it is the ID for Group

Requirements

field required type description
name yes array Language options (ar or en)
desc no array Language options (ar or en)

Header

Accept: application/json

Body

{
  "name": {
    "en": "arabic group"
  }
}

Response

The response is always in the format of Group.

{
    "data": {
        "_id": "66554ff4a32e9280cc0a660b",
        "name": {
            "en": "arabic group"
        },
        "made_by": 8,
        "account_id": 1,
        "internal_name": "test",
        "updated_at": "2024-05-28T03:38:41.815000Z",
        "created_at": "2024-05-28T03:31:00.753000Z",
        "user": {
            "id": 8,
            "email": "ammar.alhasanat@alaaqat.com",
            "email_verified_at": "2023-10-23T14:18:27.000000Z",
            "created_at": "2023-10-23T13:37:08.000000Z",
            "updated_at": "2024-05-26T22:42:43.000000Z",
            "firstname": "Ammar",
            "lastname": "Alhasanat",
            "contacts_view_id": null,
            "locale": "ar",
            "deals_view_id": null,
            "fullname": "Ammar Alhasanat"
        }
    },
    "message": "Entity was modified Successfully"
}