Hi , I am making an api call to
here is my code
'headers'=>[
'Authorization'=> 'Bearer '.$access_token,
"Content-Type"=> "application/json"
],
'json' => [
"path"=>"/images",
"recursive"=> false,
"include_media_info"=> false,
"include_deleted"=> false,
"include_has_explicit_shared_members"=> false,
"include_mounted_folders"=> true
]
]);
I've tried giving and removing forward slash in path like "/images" which gives me path not found error and other "images" which gives me " did not match pattern '(/(.|[\r\n])*)? " error . What's wrong in my code ?