action callfire_get_contact_list { label: "Find a specific contact list" description: "Returns a single ContactList instance for a given contact list id" provider: callfire method: GET path: "/contacts/lists/{id}" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Represents a contact list in CallFire system" properties: { created: { type: "integer" format: "int64" description: "A time when a given resource was created, formatted in unix time milliseconds (read only). Example: 1473781817000 for Sat, 05 Jan 1985 14:03:37 GMT" } id: { type: "integer" format: "int64" description: "An Id of a contact list" } name: { type: "string" description: "A name of a contact list" } size: { type: "integer" format: "int32" description: "A number of contacts in a contact list" } status: { type: "string" description: "A current status of a contact list, available values: ACTIVE - contact list is ready, VALIDATING - contact list validation is in progress, IMPORTING - importing is in progress, IMPORT_FAILED - in case of errors occurred during the importing, ERRORS - contact list has validation errors, DELETED - contact list was deleted, PARSE_FAILED - contacts cannot be parsed, COLUMN_TOO_LARGE - if size of phone number or any other column exceeds 255 characters" enum: ["ACTIVE", "VALIDATING", "IMPORTING", "IMPORT_FAILED", "ERRORS", "DELETED", "PARSE_FAILED", "COLUMN_TOO_LARGE"] } } } }