action api_get_opted_in_programs { label: "getOptedInPrograms" description: "This method gets a list of the seller programs that the seller has opted-in to." provider: api method: GET path: "/program/get_opted_in_programs" encoding: json output: { type: "object" description: "The base response type of the getOptedInPrograms method." properties: { programs: { type: "array" description: "An array of seller programs that the seller's account is opted in to." items: { type: "object" description: "A seller program in to which a seller can opt-in." properties: { programType: { type: "string" description: "A seller program in to which a seller can opt-in. For implementation help, refer to eBay API documentation" } } } } } } }