Question

SCIM Resource not found

  • 13 September 2018
  • 1 reply
  • 755 views

I'm trying to retrieve user list but it gives me following error. 

Exception: Resource not found  SDK HTTP Error at https://platform.devtest.ringcentral.com/restapi/v1.0/scim/v2/Users  Response text: {    "errorCode" : "AGW-404",    "message" : "Resource not found",    "errors" : [ ]  }

https://developer.ringcentral.com/api-docs/latest/index.html#!#RefScimUserList.html



$rcsdk = new SDK($credentials['clientId'], $credentials['clientSecret'], $credentials['server'], 'Demo', '1.0.0');

$platform = $rcsdk->platform();

$platform->login($credentials['username'], $credentials['extension'], $credentials['password']);

$response = $platform->get('/scim/v2/Users')->json()->records;



1 reply

Userlevel 1
Hi Nibu,

Unfortunately, our SDK does not support yet API v2. Thus you cannot access that endpoint using the SDK. Use curl request instead.

+ Phong

Reply