Skip to main content

GET All Podcasts as Select List

Overview


The following table contains important information about the GET method for managing the process of retrieving all podcasts as select list.

GET All Podcasts as Selet List
MethodGET
URL or Endpoint/api​/projects​/projectId​/podcasts/select-list
BodyNot applicable

The description of the URL parameters is as follows:

URL Parameter NameMandatoryTypeDescription
projectIdYesstringUnique Id of the project.

Request body

This method does not require the request body

Response

{
"success": true,
"errors": [],
"messages": [],
"result": [
{
"id": 0,
"name": "{name}",
"value": "{podcastId}",
"description": "{description}"
},
{
"id": 0,
"name": "{name}",
"value": "{podcastId}",
"description": "{description}"
},
{
"id": 0,
"name": "{name}",
"value": "{podcastId}",
"description": "{description}"
},
{
"id": 0,
"name": "{name}",
"value": "{podcastId}",
"description": "{description}"
}

],
"resultInfo": null,
"statusCode": 200
}

Information about the fields that appear on the response body are displayed in the table below.

Field NameTypeDescription
successboolIf the response is successful, it will return true. Otherwise, it will return false.
errorsarray[string]Indicates if there was an error.
messagesarray[string]Returns the response message from the backend.
resultarray[object]Returns the response object containing the detailed result.
idintegerThe unique identifier for the podcast.
namestringThe name of the podcast.
valuestringThe value of the podcast.
descriptionstringA description of the podcast.
resultInfoobjectAdditional information about the result (if any).
statusCodeintegerThe HTTP status code of the response.