action akeneo_association_types_get { label: "Get an association type" description: "This endpoint allows you to get the information about a given association type." provider: akeneo method: GET path: "/api/rest/v1/association-types/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }