Getting started
Content
- Articles
- Pronunciation rules
- Summarization settings
- Video settings
Distribution
Analytics
- Analytics
Monetization
- Ads
Organization
- Projects
Playlists
Update playlist settings
Playlists
Update playlist settings
Updates the feed settings for a playlist
PUT
/
projects
/
{project_id}
/
playlists
/
{playlist_id}
/
settings
curl --request PUT \
--url https://api.beyondwords.io/v1/projects/{project_id}/playlists/{playlist_id}/settings \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"title": "Podcast title",
"enabled": true,
"description": "This podcast is about...",
"homepage_url": "https://example.com/my-podcast",
"image_url": "https://example.com/image.jpeg",
"apple_categories": {
"primary_category": "Arts",
"primary_subcategory": "Books",
"secondary_category": "Comedy",
"secondary_subcategory": "Improv"
},
"google_categories": [
"Arts",
"Society & Culture",
"Comedy"
],
"language": "en",
"owner_name": "John Smith",
"owner_email": "john@example.com",
"author_names": [
"John Smith",
"Jane Doe"
],
"explicit_enabled": false,
"keywords": [
"Improv Comedy"
],
"feed_limit": 50
}'
{
"title": "Podcast title",
"enabled": true,
"description": "This podcast is about...",
"homepage_url": "https://example.com/my-podcast",
"image_url": "https://example.com/image.jpeg",
"apple_categories": {
"primary_category": "Arts",
"primary_subcategory": "Books",
"secondary_category": "Comedy",
"secondary_subcategory": "Improv"
},
"google_categories": [
"Arts",
"Society & Culture",
"Comedy"
],
"language": "en",
"owner_name": "John Smith",
"owner_email": "john@example.com",
"author_names": [
"John Smith",
"Jane Doe"
],
"explicit_enabled": false,
"keywords": [
"Improv Comedy"
],
"feed_limit": 50
}
Authorizations
Path Parameters
The numeric ID of your project
The numeric ID of your playlist
Body
application/json
Response
200 - application/json
successful
The response is of type object
.
curl --request PUT \
--url https://api.beyondwords.io/v1/projects/{project_id}/playlists/{playlist_id}/settings \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"title": "Podcast title",
"enabled": true,
"description": "This podcast is about...",
"homepage_url": "https://example.com/my-podcast",
"image_url": "https://example.com/image.jpeg",
"apple_categories": {
"primary_category": "Arts",
"primary_subcategory": "Books",
"secondary_category": "Comedy",
"secondary_subcategory": "Improv"
},
"google_categories": [
"Arts",
"Society & Culture",
"Comedy"
],
"language": "en",
"owner_name": "John Smith",
"owner_email": "john@example.com",
"author_names": [
"John Smith",
"Jane Doe"
],
"explicit_enabled": false,
"keywords": [
"Improv Comedy"
],
"feed_limit": 50
}'
{
"title": "Podcast title",
"enabled": true,
"description": "This podcast is about...",
"homepage_url": "https://example.com/my-podcast",
"image_url": "https://example.com/image.jpeg",
"apple_categories": {
"primary_category": "Arts",
"primary_subcategory": "Books",
"secondary_category": "Comedy",
"secondary_subcategory": "Improv"
},
"google_categories": [
"Arts",
"Society & Culture",
"Comedy"
],
"language": "en",
"owner_name": "John Smith",
"owner_email": "john@example.com",
"author_names": [
"John Smith",
"Jane Doe"
],
"explicit_enabled": false,
"keywords": [
"Improv Comedy"
],
"feed_limit": 50
}