action callfire_get_api_credential { label: "Find a specific api credential" description: "Returns an API credential instance for a given api credential id. Only ACCOUNT_HOLDER can invoke this API. For authentication use account credentials." provider: callfire method: GET path: "/me/api/credentials/{id}" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "An object represents API user in CallFire system. Use /me/api/credentials endpoint to manage API users on your account" properties: { enabled: { type: "boolean" description: "Is credential enabled" } id: { type: "integer" format: "int64" description: "An id of an API credential" } name: { type: "string" description: "A name of an API credential" } password: { type: "string" description: "A password for credential" } username: { type: "string" description: "Username for credential" } } } }