Invite guests
documentedInvite new guests to a company (or resend invitations).
POST /rest/v2/agency/companies/{company_id}/invite_guestAgencyno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.woodpecker.co/rest/v2/agency/companies/{{$company_id}}/invite_guest" \
-X POST \
-H "x-api-key: {{WOODPECKER_API_KEY}}" \
-H "Content-Type: application/json" \
-d '{"guests": [ {"name": "{{$guest1_name}}", "email": "{{$guest1_email}}", "guest_permissions": {{$guest1_permissions}}}, {"name": "{{$guest2_name}}", "email": "{{$guest2_email}}", "guest_permissions": {{$guest2_permissions}}} ] }'