action hhs_get_resources_languages_json { label: "Get Languages" description: "Language Listings" provider: hhs method: GET path: "/resources/languages.json" encoding: json input: { type: "object" properties: { max: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } sort: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { callback: { type: "string" } meta: { type: "object" properties: { messages: { type: "array" items: { type: "object" properties: { errorCode: { type: "string" } errorDetail: { type: "string" } errorMessage: { type: "string" } userMessage: { type: "string" } } } } pagination: { type: "object" properties: { count: { type: "integer" } currentUrl: { type: "string" } max: { type: "integer" } nextUrl: { type: "string" } offset: { type: "integer" } pageNum: { type: "integer" } previousUrl: { type: "string" } sort: { type: "string" } total: { type: "integer" } totalPages: { type: "integer" } } } status: { type: "integer" } } } results: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } isActive: { type: "boolean" } isoCode: { type: "string" } name: { type: "string" } } } } } } } }