JSON API » taxes » taxes/liable/get

Gets the fields of a tax liable setting.

Input parameters

Requires authentication and the commerce role privilege.

NameTypeDescriptionRequiredDefault value
auth_usernameStringAuthentication username.Yes
auth_passwordStringAuthentication password.Yes
taxIntegerID of tax.Yes
typeStringType of object. "cardgroup", "charge", "customer", or "product".Yes
numberIntegerID of object.Yes

Responses

CodeDescription
200Success.
400Invalid input parameters specified. Check the key and message fields for more details.
401The authentication details provided are invalid.
402Your role does not allow this.
404The tax liable setting does not exist, or you do not have permission to view it.

Data returned

Fields of tax liable setting.

Example: With required parameters

http://enswitch.example.com/api/json/taxes/liable/get/?auth_username=user;auth_password=password;tax=1;type=customer;number=123

{ "responses":[ { "code":"200", "key":"", "message":"OK" } ], "data":{ "tax":1, "type":"customer", ... } }

Change history

VersionChanges
4.0Function changed from returning 404 error when liable=0 to returning 200 success.
3.13Function added.