action hhs_get_resources_languages_id_json { label: "Get Language by ID" description: "Information about a specific language" provider: hhs method: GET path: "/resources/languages/{id}.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] 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" } } } } } } } }