I want to create a group on Zoho Cliq, assign member to the group and able to fetch the chat.
I’m getting error invalid url
I’ve tried this=
Request method: POST
API endpoint.: https://cliq.zoho.com/api/v2/groups
Payload:
<code> $groupData = array(
"group_name" => "Testing Group name",
"description" => "Testing Group description",
"members" => array("[email protected]")
);
</code>
<code> $groupData = array(
"group_name" => "Testing Group name",
"description" => "Testing Group description",
"members" => array("[email protected]")
);
</code>
$groupData = array(
"group_name" => "Testing Group name",
"description" => "Testing Group description",
"members" => array("[email protected]")
);
but it’s giving the below error
<code>Array
(
[code] => request_url_invalid
[message] => The request URL is invalid. Please check the URL pattern.
)
</code>
<code>Array
(
[code] => request_url_invalid
[message] => The request URL is invalid. Please check the URL pattern.
)
</code>
Array
(
[code] => request_url_invalid
[message] => The request URL is invalid. Please check the URL pattern.
)
I’m working on Yii2 PHP. CURL related setup, access_token, this setup is already there.