Hi all, I am using API Client Implementation in PHP to update accounts from other software but I am getting this error
Code:
Uncaught exception 'Exception' with message 'Not valid data. Field: teams, validation type: required
my code is
Code:
$response = $client->request('POST', 'Account', [ 'name' => 'Test', 'assignedUserId' => '603cc16ca3349fd59', 'teamsIds' => '5d138a5a072c161fc', ]);
on another entity where the team is not required it works by passing only assigneduserids
thank you
Comment