0

Using Pinterest api call is it possible to create a scheduled Pinterest pin?

We have tried the below code but post-schedule immediately :

$client->post("https://api.pinterest.com/v5/pins",[ 'headers' => [ "Authorization" => "Bearer " . $getToken->access_token, 'Content-Type' => 'application/json', ], 'body' => json_encode([ 'board_id' => $boardId, 'media_source' => [ 'source_type' => 'image_url', 'url' => $file, ], 'publish_date' => $schedule, ]) ]);

Is there other way to possible schedule pin on Pinterest so please guide me ?

0 Answers0