API error: Validation Failed
-
Hi,
I get the following error when running an API call to my website:
Array ( [success] => [data] => Array ( [mess] => Validation Failed ) )This is my PHP script:
function productimage_folder($imageid){ $client = new \GuzzleHttp\Client(['verify' => false]); $response = $client->request('POST', 'https://mywebsite.net/wp-json/filebird/public/v1/folder/set-attachment', [ 'headers' => [ 'Authorization' => 'Bearer 123123123123123123123123123', ], 'body' => json_encode([ 'folder' => 2, 'ids' => 80, ]) ]); $result = json_decode($response->getBody(), true); return $result; }Whats wrong?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘API error: Validation Failed’ is closed to new replies.