Jump to content

WHMCS API - Error message "Identity is required"


Recommended Posts

Hello

 

I'm trying to update client with the API but I'm getting this error

"{"result":"error","message":"Identity is required"}"

The admin user of the API has API Access and Manage API Credentials roles.
The IP of the server has been added to API IP Access Restriction and the Whitelist 

 

$ch = curl_init();
            curl_setopt($ch, CURLOPT_URL, 'https://xxxxxxxxxxx/includes/api.php');
            curl_setopt($ch, CURLOPT_POST, 1);
            curl_setopt($ch, CURLOPT_POSTFIELDS,
                http_build_query(
                    array(
                        'action' => 'UpdateClient',
                        'identifier' => $api_identifier,
                        'secret' => $api_secret,
                        'clientid' => 3,
                        'customfields' => base64_encode(serialize( [
                            "CR/ID copy" => 'https://xxxxxxxxx.xxx/uploads/?file=xxxxxx',
                        ] )),
                        'responsetype' => 'json',
                    )
                )
            );
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
            $response = curl_exec($ch);
            curl_close($ch);

 

 

Thanks.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated