action rebilly_get_customer_timeline_custom_event_type { label: "Retrieve customer timeline custom event type with specified identifier string" description: "Retrieve customer timeline custom event type.\n" provider: rebilly method: GET path: "/customer-timeline-custom-events/{id}" encoding: json output: { type: "object" required: ["name"] properties: { _links: { type: "array" description: "The links related to resource." items: { type: "object" required: ["rel"] properties: { rel: { type: "string" description: "The link type." enum: ["self"] } } } } createdTime: { description: "Customer Timeline Custom event created time." type: "object" } id: { description: "Customer Timeline Custom Event identifier string." type: "object" } name: { type: "string" description: "Customer Timeline Custom Event type name. It must not be similar to any Rebilly system event." } updatedTime: { description: "Customer Timeline Custom event updated time." type: "object" } } } }