action rebilly_get_credential { label: "Retrieve a credential" description: "Retrieve a credential with specified identifier string.\n" provider: rebilly method: GET path: "/credentials/{id}" encoding: json output: { type: "object" required: ["customerId", "password", "username"] 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." } } } }