action prss_get_api_v2_spots { label: "Returns the spots matching the query parameters." provider: prss method: GET path: "/api/v2/spots" encoding: json input: { type: "object" properties: { orderById: { type: "string" enum: ["asc", "desc"] } pageSize: { type: "integer" format: "int32" } pageStart: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "An audio spot for insertion." properties: { createdDate: { type: "string" format: "date-time" description: "The date the spot was created. Generated at creation." } duration: { type: "integer" format: "int32" description: "The length (duration) of the spot in seconds." } fileName: { type: "string" description: "The name of the audio content file. Generated at creation." } fileSize: { type: "integer" format: "int64" description: "The size of the audio content file in bytes. Generated at creation." } id: { type: "integer" format: "int64" description: "The unique ID of the spot. Generated at creation." } lastModifiedDate: { type: "string" format: "date-time" description: "The date the spot was last modified/updated. Automatically updated on any write operation." } lastUploadedDate: { type: "string" format: "date-time" description: "The date the spot audio file was uploaded. Automatically updated on upload." } name: { type: "string" description: "The unique name of the spot" } notes: { type: "string" description: "Miscellaneous notes about the spot" } originalFileName: { type: "string" description: "The original name of the audio content file." } } } } }