Bank transaction POST not working

I’m trying to add a bank transaction through the API but have hit a
problem.

I’m using PHP Oauth2. I have no problem connecting and collecting
invoices, but when I try to create a bank transaction the response array
is as follows:

array(3) { [“result”]=> array(1) { [“errors”]=> array(1) {
[“error”]=> array(1) { [“message”]=> string(41) “bank_transaction or
bank_account required” } } } [“code”]=> int(400) [“content_type”]=>
string(31) “application/json; charset=utf-8” }

My code to add the bank transaction is

$postarray=array(“bank_account” =>
https://api.freeagent.com/v2/bank_account/147047”, “paid_invoice” =>
$invoice, “dated_on” => “2012-09-08”, “gross_value” => $gross );

$updresp =
$client->fetch(‘https://api.freeagent.com/v2/bank_transaction_explanations’,
$postarray,
‘POST’,
array(‘Authorization’ => 'Bearer '. $access,‘User-Agent’ =>
‘My UA’)
);

It seems to me that the POST parameters are not being recognized. I’m
able to do a POST transaction to get the company details, but that has no
parameters.

Appreciate if you can help.

Yep, already tried that

$postarray=json_encode(array(“bank_transaction_explanation” =>
array(“bank_account” => “https://api.freeagent.com/v2/bank_account/147047”,
“paid_invoice” => $invoice, “dated_on” => “2012-09-08”, “gross_value” =>
$gross )));

Which gives :

string(257)
“{“bank_transaction_explanation”:”{"bank_account":"https:\/\/api.freeagent.com\/v2\/bank_account\/147047","paid_invoice":"https:\/\/api.freeagent.com\/v2\/invoices\/4924409","dated_on":"2012-09-08","gross_value":"12.00"}“}”

Then I get the following error:

Fatal error: Uncaught exception ‘OAuth2\InvalidArgumentException’ with
message ‘You need to give parameters as array if you want to give the token
within the URI.’

IainOn Tuesday, 25 February 2014 14:19:47 UTC, Jonathan Barrett wrote:

Hi Iain,

The correct JSON for what you’re trying to do is:

{ “bank_account_explanation”: {“bank_account”: … } }

From reading your code, it looks like what you want is probably along the
lines of:

json_encode(array(“bank_account_explanation” => array(“bank_account” =>
…)));

I.e. JSON-encoding the whole nested array. Can you try that and let me
know how you get on?

-J

Done some more testing and the problem exists on any POST transaction where
I actually try and post something. Everything else works fine. So I can
do a company enquiry (which is a POST transaction without any POST
parameters) and it will work, but any other transaction where I have POST
parameters doesn’t work.

Any further suggestions?
IainOn Tuesday, 25 February 2014 10:02:06 UTC, Iain W wrote:

I’m trying to add a bank transaction through the API but have hit a
problem.

I’m using PHP Oauth2. I have no problem connecting and collecting
invoices, but when I try to create a bank transaction the response array
is as follows:

array(3) { [“result”]=> array(1) { [“errors”]=> array(1) {
[“error”]=> array(1) { [“message”]=> string(41) “bank_transaction or
bank_account required” } } } [“code”]=> int(400) [“content_type”]=>
string(31) “application/json; charset=utf-8” }

My code to add the bank transaction is

$postarray=array(“bank_account” =>
https://api.freeagent.com/v2/bank_account/147047”, “paid_invoice” =>
$invoice, “dated_on” => “2012-09-08”, “gross_value” => $gross );

$updresp =
$client->fetch(’
https://api.freeagent.com/v2/bank_transaction_explanations’,
$postarray,
‘POST’,
array(‘Authorization’ => 'Bearer '. $access,‘User-Agent’ =>
‘My UA’)
);

It seems to me that the POST parameters are not being recognized. I’m
able to do a POST transaction to get the company details, but that has no
parameters.

Appreciate if you can help.

Finally nailed it. You were right - the library has been updated since I
got it and it handles the POST of JSON properly now, which made the
authentication process a little different too.

The library doesn’t appear to have any way I can get hold of the response
headers to look at the pagination details, which is a pain

Is there an Oauth library that the majority of your users use? And that
has access to the pagination in the Link headers?

Thanks
IainOn Wednesday, 26 February 2014 11:23:43 UTC, Jonathan Barrett wrote:

Hi Iain,

Thanks for getting back to me with what you’ve tried so far. Where you’re
getting server errors, those are what I’d expect: looking at the logs, the
JSON we’re getting isn’t nested. It also appears to be slurping in an
access_token field: not sure where that’s coming from?

Where you’re getting PHP errors, this is going to be an issue with the
library. Looking at the library’s repo, it looks like there was a change
made recently that might address the issue you’re seeing:

Support for non-array POST parameters added. · athlan/oauth2@15f0cf2 · GitHub

Can I double check that you’re using the latest version of the library?

Cheers,

-J

PS for retrieving information from the API, you should be using GET
requests, not POSTs. We have a quick breakdown of what verbs should be used
when in the API docs https://dev.freeagent.com/docs/introduction.

On Wed, Feb 26, 2014 at 11:04 AM, Iain W <iain...@googlemail.com<javascript:> wrote:

Done some more testing and the problem exists on any POST transaction
where I actually try and post something. Everything else works fine. So I
can do a company enquiry (which is a POST transaction without any POST
parameters) and it will work, but any other transaction where I have POST
parameters doesn’t work.

Any further suggestions?
Iain

On Tuesday, 25 February 2014 10:02:06 UTC, Iain W wrote:

I’m trying to add a bank transaction through the API but have hit a
problem.

I’m using PHP Oauth2. I have no problem connecting and collecting
invoices, but when I try to create a bank transaction the response array
is as follows:

array(3) { [“result”]=> array(1) { [“errors”]=> array(1) {
[“error”]=> array(1) { [“message”]=> string(41) “bank_transaction or
bank_account required” } } } [“code”]=> int(400) [“content_type”]=>
string(31) “application/json; charset=utf-8” }

My code to add the bank transaction is

$postarray=array(“bank_account” =>
https://api.freeagent.com/v2/bank_account/147047”, “paid_invoice” =>
$invoice, “dated_on” => “2012-09-08”, “gross_value” => $gross );

$updresp =
$client->fetch(‘https://api.freeagent.com/v2/bank_
transaction_explanations’,
$postarray,
‘POST’,
array(‘Authorization’ => 'Bearer '. $access,‘User-Agent’ =>
‘My UA’)
);

It seems to me that the POST parameters are not being recognized. I’m
able to do a POST transaction to get the company details, but that has no
parameters.

Appreciate if you can help.


You received this message because you are subscribed to the Google Groups
“FreeAgent API” group.
To unsubscribe from this group and stop receiving emails from it, send an
email to freeagent_ap...@googlegroups.com <javascript:>.
To post to this group, send email to freeag...@googlegroups.com<javascript:>
.
Visit this group at http://groups.google.com/group/freeagent_api.
For more options, visit https://groups.google.com/groups/opt_out.

Jonathan Barrett, Senior Engineer

FreeAgent: Accounting software, simplified
www.freeagent.com

+44 (0)131 447 0011

Follow us on Twitter: @freeagent https://twitter.com/freeagent

FreeAgent Central Ltd, 40 Torphichen Street, Edinburgh EH3 8JB
Registered in Scotland SC316774

Hi Iain,

Thanks for that. I’m at a bit of a loss here, as I’m not familiar with the
php OAuth library. To my reading, the library requires an array of params,
but when handed a multidimensional array, it complains that it’s not an
array? To confirm, the following fails with a “you need to give parameters
as an array…” error, yes?

$postarray = array(“bank_transaction_explanation” => array(“bank_account”
=> … ) );

-JOn Tue, Feb 25, 2014 at 2:33 PM, Iain W iain.blot@googlemail.com wrote:

Yep, already tried that

$postarray=json_encode(array(“bank_transaction_explanation” =>
array(“bank_account” => “https://api.freeagent.com/v2/bank_account/147047”,
“paid_invoice” => $invoice, “dated_on” => “2012-09-08”, “gross_value” =>
$gross )));

Which gives :

string(257)
“{“bank_transaction_explanation”:”{"bank_account":"https:\/\/
api.freeagent.com
\/v2\/bank_account\/147047","paid_invoice":"https:\/\/
api.freeagent.com
\/v2\/invoices\/4924409","dated_on":"2012-09-08","gross_value":"12.00"}“}”

Then I get the following error:

Fatal error: Uncaught exception ‘OAuth2\InvalidArgumentException’ with
message ‘You need to give parameters as array if you want to give the token
within the URI.’

Iain

On Tuesday, 25 February 2014 14:19:47 UTC, Jonathan Barrett wrote:

Hi Iain,

The correct JSON for what you’re trying to do is:

{ “bank_account_explanation”: {“bank_account”: … } }

From reading your code, it looks like what you want is probably along the
lines of:

json_encode(array(“bank_account_explanation” => array(“bank_account” =>
…)));

I.e. JSON-encoding the whole nested array. Can you try that and let me
know how you get on?

-J


You received this message because you are subscribed to the Google Groups
“FreeAgent API” group.
To unsubscribe from this group and stop receiving emails from it, send an
email to freeagent_api+unsubscribe@googlegroups.com.
To post to this group, send email to freeagent_api@googlegroups.com.
Visit this group at http://groups.google.com/group/freeagent_api.
For more options, visit https://groups.google.com/groups/opt_out.

Jonathan Barrett, Senior Engineer

FreeAgent: Accounting software, simplified

+44 (0)131 447 0011

Follow us on Twitter: @freeagent https://twitter.com/freeagent

FreeAgent Central Ltd, 40 Torphichen Street, Edinburgh EH3 8JB
Registered in Scotland SC316774

Hi Iain,

The correct JSON for what you’re trying to do is:

{ “bank_account_explanation”: {“bank_account”: … } }

From reading your code, it looks like what you want is probably along the
lines of:

json_encode(array(“bank_account_explanation” => array(“bank_account” =>
…)));

I.e. JSON-encoding the whole nested array. Can you try that and let me know
how you get on?

-J

Hi Iain,

Thanks for getting back to me with what you’ve tried so far. Where you’re
getting server errors, those are what I’d expect: looking at the logs, the
JSON we’re getting isn’t nested. It also appears to be slurping in an
access_token field: not sure where that’s coming from?

Where you’re getting PHP errors, this is going to be an issue with the
library. Looking at the library’s repo, it looks like there was a change
made recently that might address the issue you’re seeing:

Can I double check that you’re using the latest version of the library?

Cheers,

-J

PS for retrieving information from the API, you should be using GET
requests, not POSTs. We have a quick breakdown of what verbs should be used
when in the API docs https://dev.freeagent.com/docs/introduction.On Wed, Feb 26, 2014 at 11:04 AM, Iain W iain.blot@googlemail.com wrote:

Done some more testing and the problem exists on any POST transaction
where I actually try and post something. Everything else works fine. So I
can do a company enquiry (which is a POST transaction without any POST
parameters) and it will work, but any other transaction where I have POST
parameters doesn’t work.

Any further suggestions?
Iain

On Tuesday, 25 February 2014 10:02:06 UTC, Iain W wrote:

I’m trying to add a bank transaction through the API but have hit a
problem.

I’m using PHP Oauth2. I have no problem connecting and collecting
invoices, but when I try to create a bank transaction the response array
is as follows:

array(3) { [“result”]=> array(1) { [“errors”]=> array(1) {
[“error”]=> array(1) { [“message”]=> string(41) “bank_transaction or
bank_account required” } } } [“code”]=> int(400) [“content_type”]=>
string(31) “application/json; charset=utf-8” }

My code to add the bank transaction is

$postarray=array(“bank_account” =>
https://api.freeagent.com/v2/bank_account/147047”, “paid_invoice” =>
$invoice, “dated_on” => “2012-09-08”, “gross_value” => $gross );

$updresp =
$client->fetch(‘https://api.freeagent.com/v2/bank_
transaction_explanations’,
$postarray,
‘POST’,
array(‘Authorization’ => 'Bearer '. $access,‘User-Agent’ =>
‘My UA’)
);

It seems to me that the POST parameters are not being recognized. I’m
able to do a POST transaction to get the company details, but that has no
parameters.

Appreciate if you can help.


You received this message because you are subscribed to the Google Groups
“FreeAgent API” group.
To unsubscribe from this group and stop receiving emails from it, send an
email to freeagent_api+unsubscribe@googlegroups.com.
To post to this group, send email to freeagent_api@googlegroups.com.
Visit this group at http://groups.google.com/group/freeagent_api.
For more options, visit https://groups.google.com/groups/opt_out.

Jonathan Barrett, Senior Engineer

FreeAgent: Accounting software, simplified

+44 (0)131 447 0011

Follow us on Twitter: @freeagent https://twitter.com/freeagent

FreeAgent Central Ltd, 40 Torphichen Street, Edinburgh EH3 8JB
Registered in Scotland SC316774

Glad we got there!

I’m not sure what our php developers use: feel free to open another thread
to ask :slight_smile:

-JOn Wednesday, 26 February 2014 16:59:50 UTC, Iain W wrote:

Finally nailed it. You were right - the library has been updated since I
got it and it handles the POST of JSON properly now, which made the
authentication process a little different too.

The library doesn’t appear to have any way I can get hold of the response
headers to look at the pagination details, which is a pain

Is there an Oauth library that the majority of your users use? And that
has access to the pagination in the Link headers?

Thanks
Iain

On Wednesday, 26 February 2014 11:23:43 UTC, Jonathan Barrett wrote:

Hi Iain,

Thanks for getting back to me with what you’ve tried so far. Where you’re
getting server errors, those are what I’d expect: looking at the logs, the
JSON we’re getting isn’t nested. It also appears to be slurping in an
access_token field: not sure where that’s coming from?

Where you’re getting PHP errors, this is going to be an issue with the
library. Looking at the library’s repo, it looks like there was a change
made recently that might address the issue you’re seeing:

Support for non-array POST parameters added. · athlan/oauth2@15f0cf2 · GitHub

Can I double check that you’re using the latest version of the library?

Cheers,

-J

PS for retrieving information from the API, you should be using GET
requests, not POSTs. We have a quick breakdown of what verbs should be used
when in the API docs https://dev.freeagent.com/docs/introduction.

On Wed, Feb 26, 2014 at 11:04 AM, Iain W iain...@googlemail.com wrote:

Done some more testing and the problem exists on any POST transaction
where I actually try and post something. Everything else works fine. So I
can do a company enquiry (which is a POST transaction without any POST
parameters) and it will work, but any other transaction where I have POST
parameters doesn’t work.

Any further suggestions?
Iain

On Tuesday, 25 February 2014 10:02:06 UTC, Iain W wrote:

I’m trying to add a bank transaction through the API but have hit a
problem.

I’m using PHP Oauth2. I have no problem connecting and collecting
invoices, but when I try to create a bank transaction the response
array
is as follows:

array(3) { [“result”]=> array(1) { [“errors”]=> array(1) {
[“error”]=> array(1) { [“message”]=> string(41) “bank_transaction or
bank_account required” } } } [“code”]=> int(400) [“content_type”]=>
string(31) “application/json; charset=utf-8” }

My code to add the bank transaction is

$postarray=array(“bank_account” =>
https://api.freeagent.com/v2/bank_account/147047”, “paid_invoice” =>
$invoice, “dated_on” => “2012-09-08”, “gross_value” => $gross );

$updresp =
$client->fetch(‘https://api.freeagent.com/v2/bank_
transaction_explanations’,
$postarray,
‘POST’,
array(‘Authorization’ => 'Bearer '. $access,‘User-Agent’ =>
‘My UA’)
);

It seems to me that the POST parameters are not being recognized. I’m
able to do a POST transaction to get the company details, but that has no
parameters.

Appreciate if you can help.


You received this message because you are subscribed to the Google
Groups “FreeAgent API” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to freeagent_ap...@googlegroups.com.
To post to this group, send email to freeag...@googlegroups.com.
Visit this group at http://groups.google.com/group/freeagent_api.
For more options, visit https://groups.google.com/groups/opt_out.

Jonathan Barrett, Senior Engineer

FreeAgent: Accounting software, simplified
www.freeagent.com

+44 (0)131 447 0011

Follow us on Twitter: @freeagent https://twitter.com/freeagent

FreeAgent Central Ltd, 40 Torphichen Street, Edinburgh EH3 8JB
Registered in Scotland SC316774

Hi Jonathan

I tried what you suggested but got “Notice: Array to string conversion” notice
from PHP Oauth, so serialized the embedded array into JSON as follows:

$postarray=array(“bank_account_explanation” =>
json_encode(array(“bank_account” =>
https://api.freeagent.com/v2/bank_account/147047”, “paid_invoice” =>
$invoice, “dated_on” => “2012-09-08”, “gross_value” => $gross )));

Dumping the array provides this, which looks ok

array(1) { [“bank_account_explanation”]=> string(186)
“{“bank_account”:“https://api.freeagent.com/v2/bank_account/147047”,“paid_invoice”:“https://api.freeagent.com/v2/invoices/4924409”,“dated_on”:“2012-09-08”,“gross_value”:“12.00”}”
}

But I’m still getting the same error:
array(3) { [“result”]=> array(1) { [“errors”]=> array(1) { [“error”]=>
array(1) { [“message”]=> string(41) “bank_transaction or bank_account
required” } } } [“code”]=> int(400) [“content_type”]=> string(31)
“application/json; charset=utf-8” }

Kind regards
IainOn Tuesday, 25 February 2014 12:16:56 UTC, Jonathan Barrett wrote:

Hi Iain,

You’ll need to ensure the $postarray is contained in a
“bank_transaction_explanation” root element:

$postarray = array(“bank_account_explanation” => array(“bank_account” => …
));

If you look at the response in this section of the docshttps://dev.freeagent.com/docs/bank_transaction_explanations#create-a-bank-transaction-explanation,
you’ll see the expected format for submitting resources.

Cheers,

-J

On Tuesday, 25 February 2014 10:02:06 UTC, Iain W wrote:

I’m trying to add a bank transaction through the API but have hit a
problem.

I’m using PHP Oauth2. I have no problem connecting and collecting
invoices, but when I try to create a bank transaction the response array
is as follows:

array(3) { [“result”]=> array(1) { [“errors”]=> array(1) {
[“error”]=> array(1) { [“message”]=> string(41) “bank_transaction or
bank_account required” } } } [“code”]=> int(400) [“content_type”]=>
string(31) “application/json; charset=utf-8” }

My code to add the bank transaction is

$postarray=array(“bank_account” =>
https://api.freeagent.com/v2/bank_account/147047”, “paid_invoice” =>
$invoice, “dated_on” => “2012-09-08”, “gross_value” => $gross );

$updresp =
$client->fetch(’
https://api.freeagent.com/v2/bank_transaction_explanations’,
$postarray,
‘POST’,
array(‘Authorization’ => 'Bearer '. $access,‘User-Agent’ =>
‘My UA’)
);

It seems to me that the POST parameters are not being recognized. I’m
able to do a POST transaction to get the company details, but that has no
parameters.

Appreciate if you can help.

Hi Iain,

You’ll need to ensure the $postarray is contained in a
“bank_transaction_explanation” root element:

$postarray = array(“bank_account_explanation” => array(“bank_account” => …
));

If you look at the response in this section of the docshttps://dev.freeagent.com/docs/bank_transaction_explanations#create-a-bank-transaction-explanation,
you’ll see the expected format for submitting resources.

Cheers,

-JOn Tuesday, 25 February 2014 10:02:06 UTC, Iain W wrote:

I’m trying to add a bank transaction through the API but have hit a
problem.

I’m using PHP Oauth2. I have no problem connecting and collecting
invoices, but when I try to create a bank transaction the response array
is as follows:

array(3) { [“result”]=> array(1) { [“errors”]=> array(1) {
[“error”]=> array(1) { [“message”]=> string(41) “bank_transaction or
bank_account required” } } } [“code”]=> int(400) [“content_type”]=>
string(31) “application/json; charset=utf-8” }

My code to add the bank transaction is

$postarray=array(“bank_account” =>
https://api.freeagent.com/v2/bank_account/147047”, “paid_invoice” =>
$invoice, “dated_on” => “2012-09-08”, “gross_value” => $gross );

$updresp =
$client->fetch(’
https://api.freeagent.com/v2/bank_transaction_explanations’,
$postarray,
‘POST’,
array(‘Authorization’ => 'Bearer '. $access,‘User-Agent’ =>
‘My UA’)
);

It seems to me that the POST parameters are not being recognized. I’m
able to do a POST transaction to get the company details, but that has no
parameters.

Appreciate if you can help.

Hi Jonathan
To recap,
I’m using the PHP OAuth2 Client library from Github as mentioned in your
doco at FreeAgent Developer Dashboard.

Once the authorisation has been done, you have a object that you can call
the fetch method on as follows:

$object->fetch(url, request params, method, header params)

The request parameters are what we appear to be having a problem with

  1. If I have a single dimension array, as per

array(4) { [“bank_account”]=> string(48)
https://api.freeagent.com/v2/bank_account/147047” [“paid_invoice”]=>
string(45) “https://api.freeagent.com/v2/invoices/4924409” [“dated_on”]=>
string(10) “2012-09-08” [“gross_value”]=> string(5) “12.00” }

the response provides a failure ‘bank_transaction or bank_account required’.

  1. If I have a multi dimension array as per

array(1) { [“bank_transaction_explanation”]=> array(4) { [“bank_account”]=>
string(48) “https://api.freeagent.com/v2/bank_account/147047
[“paid_invoice”]=> string(45)
https://api.freeagent.com/v2/invoices/4924409” [“dated_on”]=> string(10)
“2012-09-08” [“gross_value”]=> string(5) “12.00” } }

I’ll get a ‘Notice: Array to string conversion’ warning from OAuth and a
500 Server Error.

  1. If I serialise the embedded array as per

array(1) { [“bank_transaction_explanation”]=> string(186)
“{“bank_account”:“https://api.freeagent.com/v2/bank_account/147047”,“paid_invoice”:“https://api.freeagent.com/v2/invoices/4924409”,“dated_on”:“2012-09-08”,“gross_value”:“12.00”}”
}

I get a 500 Server Error

  1. If I serialise the whole array as per

string(219)
“{“bank_transaction_explanation”:{“bank_account”:“https://api.freeagent.com/v2/bank_account/147047”,“paid_invoice”:“https://api.freeagent.com/v2/invoices/4924409”,“dated_on”:“2012-09-08”,“gross_value”:“12.00”}}”

I get a 'Fatal error: Uncaught exception ‘OAuth2\InvalidArgumentException’
with message ‘You need to give parameters as array if you want to give the
token within the URI.’ error

Could you perhaps just verify what your API expects for an insert bank
transaction call, because in reading your documentation it really doesn’t
look like I need a multidimensional parameter list - it just looks like
that is what is returned in the response.

Kind regards
IainOn Tuesday, 25 February 2014 15:05:02 UTC, Jonathan Barrett wrote:

Hi Iain,

Thanks for that. I’m at a bit of a loss here, as I’m not familiar with the
php OAuth library. To my reading, the library requires an array of params,
but when handed a multidimensional array, it complains that it’s not an
array? To confirm, the following fails with a “you need to give parameters
as an array…” error, yes?

$postarray = array(“bank_transaction_explanation” => array(“bank_account”
=> … ) );

-J

On Tue, Feb 25, 2014 at 2:33 PM, Iain W <iain...@googlemail.com<javascript:> wrote:

Yep, already tried that

$postarray=json_encode(array(“bank_transaction_explanation” =>
array(“bank_account” => “https://api.freeagent.com/v2/bank_account/147047”,
“paid_invoice” => $invoice, “dated_on” => “2012-09-08”, “gross_value” =>
$gross )));

Which gives :

string(257)
“{“bank_transaction_explanation”:”{"bank_account":"https:\/\/
api.freeagent.com
\/v2\/bank_account\/147047","paid_invoice":"https:\/\/
api.freeagent.com
\/v2\/invoices\/4924409","dated_on":"2012-09-08","gross_value":"12.00"}“}”

Then I get the following error:

Fatal error: Uncaught exception ‘OAuth2\InvalidArgumentException’ with
message ‘You need to give parameters as array if you want to give the token
within the URI.’

Iain

On Tuesday, 25 February 2014 14:19:47 UTC, Jonathan Barrett wrote:

Hi Iain,

The correct JSON for what you’re trying to do is:

{ “bank_account_explanation”: {“bank_account”: … } }

From reading your code, it looks like what you want is probably along
the lines of:

json_encode(array(“bank_account_explanation” => array(“bank_account” =>
…)));

I.e. JSON-encoding the whole nested array. Can you try that and let me
know how you get on?

-J


You received this message because you are subscribed to the Google Groups
“FreeAgent API” group.
To unsubscribe from this group and stop receiving emails from it, send an
email to freeagent_ap...@googlegroups.com <javascript:>.
To post to this group, send email to freeag...@googlegroups.com<javascript:>
.
Visit this group at http://groups.google.com/group/freeagent_api.
For more options, visit https://groups.google.com/groups/opt_out.

Jonathan Barrett, Senior Engineer

FreeAgent: Accounting software, simplified
www.freeagent.com

+44 (0)131 447 0011

Follow us on Twitter: @freeagent https://twitter.com/freeagent

FreeAgent Central Ltd, 40 Torphichen Street, Edinburgh EH3 8JB
Registered in Scotland SC316774