Build Status

NAME

WebService::Reactio - API client for Reactio

SYNOPSIS

use WebService::Reactio;

my $client = WebService::Reactio->new(
    api_key      => '__API_KEY__',
    organization => '__ORGANIZATION__',
);

my $incidents = $client->incidents;

DESCRIPTION

WebService::Reactio is API client for Reactio (https://reactio.jp/).

METHODS

new(%params)

Create instance of WebService::Reactio.

%params must have following parameter:

%params optional parameters are:

create_incident($name, [\%options])

Create new incident.

You must have following parameter:

%options is optional parameters. Please refer API official guide if you want to get details.

notify_incident($incident_id, $notification_text, [\%options])

Send notificate to specified incident.

You must have following parameter:

%options is optional parameters. Please refer API official guide if you want to get details.

incident($incident_id)

Get incident details.

You must have following parameter:

incidents([\%options])

Get incident list.

%options is optional parameters. Please refer API official guide if you want to get details.

LICENSE

Copyright (C) papix.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Reactio API Official Guide https://reactio.jp/development/api

AUTHOR

papix mail@papix.net