Creates a new tax_ object for a customer.
Parameters
- typestringRequired
Type of the tax ID, one of
ad_,nrt ae_,trn al_,tin am_,tin ao_,tin ar_,cuit au_,abn au_,arn aw_,tin az_,tin ba_,tin bb_,tin bd_,bin bf_,ifu bg_,uic bh_,vat bj_,ifu bo_,tin br_,cnpj br_,cpf bs_,tin by_,tin ca_,bn ca_,gst_ hst ca_,pst_ bc ca_,pst_ mb ca_,pst_ sk ca_,qst cd_,nif ch_,uid ch_,vat cl_,tin cm_,niu cn_,tin co_,nit cr_,tin cv_,nif de_,stn do_,rcn ec_,ruc eg_,tin es_,cif et_,tin eu_,oss_ vat eu_,vat gb_,vat ge_,vat gn_,nif hk_,br hr_,oib hu_,tin id_,npwp il_,vat in_,gst is_,vat jp_,cn jp_,rn jp_,trn ke_,pin kg_,tin kh_,tin kr_,brn kz_,bin la_,tin li_,uid li_,vat ma_,vat md_,vat me_,pib mk_,vat mr_,nif mx_,rfc my_,frp my_,itn my_,sst ng_,tin no_,vat no_,voec np_,pan nz_,gst om_,vat pe_,ruc ph_,tin ro_,tin rs_,pib ru_,inn ru_,kpp sa_,vat sg_,gst sg_,uen si_,tin sn_,ninea sr_,fin sv_,nit th_,vat tj_,tin tr_,tin tw_,vat tz_,vat ua_,vat ug_,tin us_,ein uy_,ruc uz_,tin uz_,vat ve_,rif vn_,tin za_,vat zm_, ortin zw_tin - valuestringRequired
Value of the tax ID.
Returns
The created tax_ object.
{ "id": "txi_1MoC8zLkdIwHu7ixEhgWcHzJ", "object": "tax_id", "country": "DE", "created": 1679431857, "customer": "cus_NZKoSNZZ58qtO0", "livemode": false, "type": "eu_vat", "value": "DE123456789", "verification": { "status": "pending", "verified_address": null, "verified_name": null }}Creates a new account or customer tax_ object.
Parameters
- typestringRequired
Type of the tax ID, one of
ad_,nrt ae_,trn al_,tin am_,tin ao_,tin ar_,cuit au_,abn au_,arn aw_,tin az_,tin ba_,tin bb_,tin bd_,bin bf_,ifu bg_,uic bh_,vat bj_,ifu bo_,tin br_,cnpj br_,cpf bs_,tin by_,tin ca_,bn ca_,gst_ hst ca_,pst_ bc ca_,pst_ mb ca_,pst_ sk ca_,qst cd_,nif ch_,uid ch_,vat cl_,tin cm_,niu cn_,tin co_,nit cr_,tin cv_,nif de_,stn do_,rcn ec_,ruc eg_,tin es_,cif et_,tin eu_,oss_ vat eu_,vat gb_,vat ge_,vat gn_,nif hk_,br hr_,oib hu_,tin id_,npwp il_,vat in_,gst is_,vat jp_,cn jp_,rn jp_,trn ke_,pin kg_,tin kh_,tin kr_,brn kz_,bin la_,tin li_,uid li_,vat ma_,vat md_,vat me_,pib mk_,vat mr_,nif mx_,rfc my_,frp my_,itn my_,sst ng_,tin no_,vat no_,voec np_,pan nz_,gst om_,vat pe_,ruc ph_,tin ro_,tin rs_,pib ru_,inn ru_,kpp sa_,vat sg_,gst sg_,uen si_,tin sn_,ninea sr_,fin sv_,nit th_,vat tj_,tin tr_,tin tw_,vat tz_,vat ua_,vat ug_,tin us_,ein uy_,ruc uz_,tin uz_,vat ve_,rif vn_,tin za_,vat zm_, ortin zw_tin - valuestringRequired
Value of the tax ID.
More parameters
- ownerobject
Returns
The created tax_ object.
{ "id": "txi_1NuMB12eZvKYlo2CMecoWkZd", "object": "tax_id", "country": "DE", "created": 123456789, "customer": null, "livemode": false, "type": "eu_vat", "value": "DE123456789", "verification": null, "owner": { "type": "self", "customer": null }}Retrieves the tax_ object with the given identifier.
Parameters
No parameters.
Returns
Returns a tax_ object if a valid identifier was provided.
{ "id": "txi_1MoC8zLkdIwHu7ixEhgWcHzJ", "object": "tax_id", "country": "DE", "created": 1679431857, "customer": "cus_NZKoSNZZ58qtO0", "livemode": false, "type": "eu_vat", "value": "DE123456789", "verification": { "status": "pending", "verified_address": null, "verified_name": null }}Retrieves an account or customer tax_ object.
Parameters
No parameters.
Returns
Returns a tax_ object if a valid identifier was provided.
{ "id": "txi_1NuMB12eZvKYlo2CMecoWkZd", "object": "tax_id", "country": "DE", "created": 123456789, "customer": null, "livemode": false, "type": "eu_vat", "value": "DE123456789", "verification": null, "owner": { "type": "self", "customer": null }}Returns a list of tax IDs for a customer.
Parameters
No parameters.
More parameters
- ending_
beforestring - limitinteger
- starting_
afterstring
Returns
A dictionary with a data property that contains an array of up to limit tax IDs, starting after tax ID starting_. Each entry in the array is a separate tax_ object. If no more tax IDs are available, the resulting array will be empty. Raises an error if the customer ID is invalid.
{ "object": "list", "url": "/v1/customers/cus_NZKoSNZZ58qtO0/tax_ids", "has_more": false, "data": [ { "id": "txi_1MoC8zLkdIwHu7ixEhgWcHzJ", "object": "tax_id", "country": "DE", "created": 1679431857, "customer": "cus_NZKoSNZZ58qtO0", "livemode": false, "type": "eu_vat", "value": "DE123456789", "verification": { "status": "pending", "verified_address": null, "verified_name": null } } ]}