action zoom_get_ablocked_list { label: "Get blocked list details" description: "A Zoom account owner or a user with admin privilege can block phone numbers for phone users in an account. Blocked numbers can be inbound (numbers will be blocked from calling in) and outbound (phone users in your account won't be able to dial those numbers). Blocked callers will hear a generic message stating that the person they are calling is not available.
Use this API to get information about a specific blocked list.
\n**Prerequisites:**\n* Pro or higher account plan with Zoom phone license
\n**Scope:** `phone:read:admin`
\n\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`" provider: zoom method: GET path: "/phone/blocked_list/{blockedListId}" encoding: json input: { type: "object" properties: { blockedListId: { type: "string" } } required: ["blockedListId"] additionalProperties: false } output: { type: "object" properties: { block_type: { type: "string" description: "Block type.
\n`inbound`: The blocked number or numbers with the specifie prefix are prevented from calling in to phone users.

\n`outbound`: The phone users are prevented from calling the blocked number or numbers with the specified prefix." enum: ["inbound", "outbound"] } comment: { type: "string" description: "Provide a comment to help you identify the blocked number or prefix." } id: { type: "string" description: "Unique identifier of the blocked list." } match_type: { type: "string" description: "Indicates the match type for the blocked list. The values can be one of the following:
\n`phoneNumber`: Indicates that only a specific phone number that is shown in the `phone_number` field is blocked.

\n`prefix`: Indicates that all numbers starting with prefix that is shown in the `phone_number` field are blocked." enum: ["phoneNumber", "prefix"] } phone_number: { type: "string" description: "The phone number or the prefix number that is blocked based on the `match_type`." } status: { type: "string" description: "Indicates whether the blocking is active or inactive.
\n`active`: The blocked list is active.
\n`inactive`: The blocked list is inactive." enum: ["active", "inactive"] } } } }