in reply to Re^2: Perl Acolyte in need for some guidance regarding RT integration with project management app.
in thread Perl Acolyte in need for some guidance regarding RT integration with project management app.
Hi again, check out REST::Client which you can configure to connect to any Restful API, which Project Open appears to be.
Update: Usually, REST APIs pass data back and forth serialized as JSON. Your script's request routine would serialize the data from the RT ticket to a JSON obj and pass that to Project Open in the body of the API request. The response content will likely also be a JSON object which the response processing routine in your script would deserialize and then use as Perl data.
Hope this helps!
|
|---|