Skip to content

Commit

Permalink
Update MandrillSubaccountsApi.java
Browse files Browse the repository at this point in the history
Fixing subaccount custom_quota add with the help of mandrill support
  • Loading branch information
Lokesh-Github123 committed Nov 6, 2015
1 parent da9bb98 commit f47e91f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public MandrillSubaccountInfo add(final String id, final String name,
params.put("id", id);
params.put("name", name);
params.put("notes", notes);
params.put("customQuota", customQuota);
params.put("custom_quota", customQuota);
return MandrillUtil.query(rootUrl+ "subaccounts/add.json",
params, MandrillSubaccountInfo.class);

Expand Down

0 comments on commit f47e91f

Please sign in to comment.