action tl_api_article_gym_article_details { label: "Get Gym specific properties for article\n " provider: tl_api method: GET path: "/api/Article/GymArticle/{articleId}/{gymId}" encoding: json input: { type: "object" properties: { articleId: { type: "integer" format: "int32" } gymId: { type: "integer" format: "int32" } } required: ["articleId", "gymId"] additionalProperties: false } output: { type: "object" description: "The GymArticleDetailsDTO Class.\nContains fields of GymArticleDetails DTO in application.\n " properties: { articleId: { type: "integer" format: "int32" } availableQty: { type: "number" format: "decimal" } createdUser: { type: "string" description: "Created User " } employeeDiscount: { type: "number" format: "decimal" } employeePrice: { type: "number" format: "decimal" } gymId: { type: "integer" format: "int32" description: "Gym Id where article is related " } gymIdList: { type: "string" description: "GymId - Gym Id string with comma separated GymIds " } gymName: { type: "string" description: "Gym Name" } id: { type: "integer" format: "int32" } isDefault: { type: "boolean" description: "Set as the default values for the article " } isInventoryItem: { type: "boolean" } isObsolete: { type: "boolean" } modifiedUser: { type: "string" description: "Modified user" } reorderLevel: { type: "number" format: "decimal" } revenueAccountId: { type: "integer" format: "int32" description: "Revenue account Id" } sellingPrice: { type: "number" format: "decimal" } } additionalProperties: false } }