Jellypod Docs

Upload an episode cover image (raw image bytes in body)

PUT
/v1/episodes/{episode_id}/image

Authorization

bearerAuth
AuthorizationBearer <token>

API key issued from /settings/api-keys in the Jellypod studio. Send as Authorization: Bearer <key>.

In: header

Path Parameters

episode_id*string

Episode UUID

Formatuuid

Request Body

application/octet-stream

Raw image bytes. Set Content-Type to image/jpeg, image/png, or image/webp.

TypeScript Definitions

Use the request body type in TypeScript.

body*file
Formatbinary

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X PUT "https://api.jellypod.com/v1/episodes/497f6eca-6276-4993-bfeb-53cbbbba6f08/image" \  -H "Content-Type: application/octet-stream" \  -d 'string'
{
  "data": {
    "id": "string",
    "image_url": "string"
  }
}

Was this page helpful?