Skip to content

Latest commit

 

History

History
132 lines (100 loc) · 4.02 KB

community.missing_collection.statuscake_contact_groups_info_module.rst

File metadata and controls

132 lines (100 loc) · 4.02 KB

community.missing_collection.statuscake_contact_groups_info

Get information from Status Cake (contact-groups).

Version added: 0.3.0

The below requirements are needed on the host that executes this module.

  • requests
Parameter Choices/Defaults Comments
api_key
string / required
api key for statuscake.
url
string
Default:
statuscake contact-groups api.

- name: get all contact-groups
  community.missing_collection.statuscake_contact_groups_info:
    api_key: 'Ohxxxxxxxxxxxxxxxxpi'

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
data
list
when success.
result of the api.

Sample:
[{'id': '1', 'name': 'Operations Team', 'ping_url': 'https://www.example.com/notificaions', 'email_addresses': [], 'mobile_numbers': [], 'integrations': []}]


Authors