Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/garu/net-zendesk
Thin and lightweight interface for Zendesk's API
https://github.com/garu/net-zendesk
Last synced: 11 days ago
JSON representation
Thin and lightweight interface for Zendesk's API
- Host: GitHub
- URL: https://github.com/garu/net-zendesk
- Owner: garu
- Created: 2017-03-12T21:30:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-12T21:33:22.000Z (almost 8 years ago)
- Last Synced: 2024-11-05T21:50:25.627Z (about 2 months ago)
- Language: Perl
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
Net::Zendesk
============Net::Zendesk is a thin and lightweight interface for Zendesk's API.
```perl
use Net::Zendesk;my $zen = Net::Zendesk->new(
domain => 'obscura.zendesk.com',
email => '[email protected]',
token => 'your_valid_zendesk_api_token',
);$zen->create_ticket(
{
requester => {
name => 'The Customer',
email => '[email protected]',
},
subject => 'My printer is on fire!',
comment => {
body => 'The smoke is very colorful.'
},
},
async => 'true',
);my $result = $zen->search({
status => 'open',
priority => { '>=' => 'normal' },
created => { '>' => '2017-01-23', '<' => '2017-03-01' },
subject => 'photo*',
assignee => undef,
-tags => 'invoice',
});
```For complete usage information, please refer to the
[full documentation](https://metacpan.org/pod/Net::Zendesk).### Installation
cpanm Net::Zendesk
or
cpan Net::Zendesk
or, manually:
perl Makefile.PL && make && make test && make install
### Author
Breno G. de Oliveira `garu at cpan.org`