Python
from playbookNetworkClient import PlaybookClient def setup(self): self.playbookClient = PlaybookClient() self.playbookClient.set_api_key({your api key}) def upload_image(self, image: Union[str, bytes]): result = self.playbookClient.upload_image_to_playbook(image)
{ "message": "Image Uploaded succesfully" }
Uploads image to playbook server
Your API key. This is required by most endpoints to access our API programatically. You can view your x-api-key using the 'Profile' tab on the website.
Successful Response
The response is of type object.
object