Create organization
documentedCreate a new organization.
POST /organizationsOrganizationsno 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.lime-go.com/v1/organizations" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$name}}", "domain": "{{$domain}}", "website": "{{$website}}", "description": "{{$description}}", "address": {"line1": "{{$address_line1}}", "line2": "{{$address_line2}}", "city": "{{$city}}", "state": "{{$state}}", "postal_code": "{{$postal_code}}", "country": "{{$country}}"}, "contacts": {"email": "{{$contact_email}}", "phone": "{{$phone}}"}}'"