Retrieves a single dial by ID along with associated memberships. Only the dial owner & members can see a dial. Returns ENOTFOUND if dial does not exist or user does not have permission to view it.
(ctx context.Context, id int)
| 84 | // the dial owner & members can see a dial. Returns ENOTFOUND if dial does |
| 85 | // not exist or user does not have permission to view it. |
| 86 | FindDialByID(ctx context.Context, id int) (*Dial, error) |
| 87 | |
| 88 | // Retrieves a list of dials based on a filter. Only returns dials that |
| 89 | // the user owns or is a member of. Also returns a count of total matching |
no outgoing calls