action rebilly_get_credential_collection { label: "Retrieve a list of credentials" description: "Retrieve a list of credentials.\n" provider: rebilly method: GET path: "/credentials" encoding: json output: { type: "array" items: { type: "object" required: ["username", "password", "customerId"] properties: { _links: { type: "array" description: "The links related to resource." items: { type: "object" } } customerId: { type: "string" description: "The credential's customer ID." } expiredTime: { type: "string" format: "date-time" description: "The credential's expired time." } id: { description: "The credential identifier string." type: "object" } password: { type: "string" format: "password" description: "The credential's password." } username: { type: "string" description: "Credential's username." } } } } }