Create New Contact Property Groups

POST https://app.alaaqat.com/api/contacts/properties/groups

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": {
    "ar": "Test",
    "en": "Test"
  }
}

Response

The response is always in the format of Group.

{
    "data": {
        "name": {
            "ar": "Test",
            "en": "Test"
        },
        "made_by": 8,
        "account_id": 1,
        "internal_name": "test1",
        "updated_at": "2024-05-27T14:38:44.580000Z",
        "created_at": "2024-05-27T14:38:44.580000Z",
        "_id": "66549af4a32e9280cc0a6605",
        "user": {}
    },
    "message": "Entity was created Successfully"
}