0

Maybe my ad account's pay method was set CNY.

How to set budget unit which through call API's code?

Here is my CURL code. create ad set by CURL

Error msg: Your budget is too low. The minimum budget for this ad set is $1.00.

Thanks!

王世刚
  • 27
  • 6

1 Answers1

1

As stated in docs related to bidding

The bid amount's unit is cent for currencies like USD, EUR, and the basic unit for currencies like JPY, KRW.

In your call you use bid_amount=1, daily_budget=3, which means 1 and 3 cents. For bid_amount that may be relevant amount (depends on used billing_event), but for budget it's too low.

You can see minimum budget values for different currencies in budget limits docs.

Also note that not all currencies use the same offset, which means not everywhere 1 means 1 cent. Those offsets are documented here.

David
  • 1,426
  • 17
  • 25
  • When I use `daily_budget=100 `, the call is go to next step. In addition, How to know the **currency** for currently ad set through any search call? – 王世刚 Feb 01 '16 at 10:38
  • The currency is always the same for the whole account. You can get it from Graph API using `/v2.5/act_?fields=currency` – David Feb 01 '16 at 11:32