1 | type Stripe = { |
2 | token: string; |
3 | }; |
4 |
|
5 | * Post issuing cards |
6 | * Creates an Issuing Card object. |
7 | */ |
8 | export async function main( |
9 | auth: Stripe, |
10 | body: { |
11 | cardholder?: string; |
12 | currency: string; |
13 | expand?: string[]; |
14 | financial_account?: string; |
15 | metadata?: { [k: string]: string }; |
16 | pin?: { encrypted_number?: string; [k: string]: unknown }; |
17 | replacement_for?: string; |
18 | replacement_reason?: "damaged" | "expired" | "lost" | "stolen"; |
19 | shipping?: { |
20 | address: { |
21 | city: string; |
22 | country: string; |
23 | line1: string; |
24 | line2?: string; |
25 | postal_code: string; |
26 | state?: string; |
27 | [k: string]: unknown; |
28 | }; |
29 | customs?: { eori_number?: string; [k: string]: unknown }; |
30 | name: string; |
31 | phone_number?: string; |
32 | require_signature?: boolean; |
33 | service?: "express" | "priority" | "standard"; |
34 | type?: "bulk" | "individual"; |
35 | [k: string]: unknown; |
36 | }; |
37 | spending_controls?: { |
38 | allowed_categories?: ( |
39 | | "ac_refrigeration_repair" |
40 | | "accounting_bookkeeping_services" |
41 | | "advertising_services" |
42 | | "agricultural_cooperative" |
43 | | "airlines_air_carriers" |
44 | | "airports_flying_fields" |
45 | | "ambulance_services" |
46 | | "amusement_parks_carnivals" |
47 | | "antique_reproductions" |
48 | | "antique_shops" |
49 | | "aquariums" |
50 | | "architectural_surveying_services" |
51 | | "art_dealers_and_galleries" |
52 | | "artists_supply_and_craft_shops" |
53 | | "auto_and_home_supply_stores" |
54 | | "auto_body_repair_shops" |
55 | | "auto_paint_shops" |
56 | | "auto_service_shops" |
57 | | "automated_cash_disburse" |
58 | | "automated_fuel_dispensers" |
59 | | "automobile_associations" |
60 | | "automotive_parts_and_accessories_stores" |
61 | | "automotive_tire_stores" |
62 | | "bail_and_bond_payments" |
63 | | "bakeries" |
64 | | "bands_orchestras" |
65 | | "barber_and_beauty_shops" |
66 | | "betting_casino_gambling" |
67 | | "bicycle_shops" |
68 | | "billiard_pool_establishments" |
69 | | "boat_dealers" |
70 | | "boat_rentals_and_leases" |
71 | | "book_stores" |
72 | | "books_periodicals_and_newspapers" |
73 | | "bowling_alleys" |
74 | | "bus_lines" |
75 | | "business_secretarial_schools" |
76 | | "buying_shopping_services" |
77 | | "cable_satellite_and_other_pay_television_and_radio" |
78 | | "camera_and_photographic_supply_stores" |
79 | | "candy_nut_and_confectionery_stores" |
80 | | "car_and_truck_dealers_new_used" |
81 | | "car_and_truck_dealers_used_only" |
82 | | "car_rental_agencies" |
83 | | "car_washes" |
84 | | "carpentry_services" |
85 | | "carpet_upholstery_cleaning" |
86 | | "caterers" |
87 | | "charitable_and_social_service_organizations_fundraising" |
88 | | "chemicals_and_allied_products" |
89 | | "child_care_services" |
90 | | "childrens_and_infants_wear_stores" |
91 | | "chiropodists_podiatrists" |
92 | | "chiropractors" |
93 | | "cigar_stores_and_stands" |
94 | | "civic_social_fraternal_associations" |
95 | | "cleaning_and_maintenance" |
96 | | "clothing_rental" |
97 | | "colleges_universities" |
98 | | "commercial_equipment" |
99 | | "commercial_footwear" |
100 | | "commercial_photography_art_and_graphics" |
101 | | "commuter_transport_and_ferries" |
102 | | "computer_network_services" |
103 | | "computer_programming" |
104 | | "computer_repair" |
105 | | "computer_software_stores" |
106 | | "computers_peripherals_and_software" |
107 | | "concrete_work_services" |
108 | | "construction_materials" |
109 | | "consulting_public_relations" |
110 | | "correspondence_schools" |
111 | | "cosmetic_stores" |
112 | | "counseling_services" |
113 | | "country_clubs" |
114 | | "courier_services" |
115 | | "court_costs" |
116 | | "credit_reporting_agencies" |
117 | | "cruise_lines" |
118 | | "dairy_products_stores" |
119 | | "dance_hall_studios_schools" |
120 | | "dating_escort_services" |
121 | | "dentists_orthodontists" |
122 | | "department_stores" |
123 | | "detective_agencies" |
124 | | "digital_goods_applications" |
125 | | "digital_goods_games" |
126 | | "digital_goods_large_volume" |
127 | | "digital_goods_media" |
128 | | "direct_marketing_catalog_merchant" |
129 | | "direct_marketing_combination_catalog_and_retail_merchant" |
130 | | "direct_marketing_inbound_telemarketing" |
131 | | "direct_marketing_insurance_services" |
132 | | "direct_marketing_other" |
133 | | "direct_marketing_outbound_telemarketing" |
134 | | "direct_marketing_subscription" |
135 | | "direct_marketing_travel" |
136 | | "discount_stores" |
137 | | "doctors" |
138 | | "door_to_door_sales" |
139 | | "drapery_window_covering_and_upholstery_stores" |
140 | | "drinking_places" |
141 | | "drug_stores_and_pharmacies" |
142 | | "drugs_drug_proprietaries_and_druggist_sundries" |
143 | | "dry_cleaners" |
144 | | "durable_goods" |
145 | | "duty_free_stores" |
146 | | "eating_places_restaurants" |
147 | | "educational_services" |
148 | | "electric_razor_stores" |
149 | | "electric_vehicle_charging" |
150 | | "electrical_parts_and_equipment" |
151 | | "electrical_services" |
152 | | "electronics_repair_shops" |
153 | | "electronics_stores" |
154 | | "elementary_secondary_schools" |
155 | | "emergency_services_gcas_visa_use_only" |
156 | | "employment_temp_agencies" |
157 | | "equipment_rental" |
158 | | "exterminating_services" |
159 | | "family_clothing_stores" |
160 | | "fast_food_restaurants" |
161 | | "financial_institutions" |
162 | | "fines_government_administrative_entities" |
163 | | "fireplace_fireplace_screens_and_accessories_stores" |
164 | | "floor_covering_stores" |
165 | | "florists" |
166 | | "florists_supplies_nursery_stock_and_flowers" |
167 | | "freezer_and_locker_meat_provisioners" |
168 | | "fuel_dealers_non_automotive" |
169 | | "funeral_services_crematories" |
170 | | "furniture_home_furnishings_and_equipment_stores_except_appliances" |
171 | | "furniture_repair_refinishing" |
172 | | "furriers_and_fur_shops" |
173 | | "general_services" |
174 | | "gift_card_novelty_and_souvenir_shops" |
175 | | "glass_paint_and_wallpaper_stores" |
176 | | "glassware_crystal_stores" |
177 | | "golf_courses_public" |
178 | | "government_licensed_horse_dog_racing_us_region_only" |
179 | | "government_licensed_online_casions_online_gambling_us_region_only" |
180 | | "government_owned_lotteries_non_us_region" |
181 | | "government_owned_lotteries_us_region_only" |
182 | | "government_services" |
183 | | "grocery_stores_supermarkets" |
184 | | "hardware_equipment_and_supplies" |
185 | | "hardware_stores" |
186 | | "health_and_beauty_spas" |
187 | | "hearing_aids_sales_and_supplies" |
188 | | "heating_plumbing_a_c" |
189 | | "hobby_toy_and_game_shops" |
190 | | "home_supply_warehouse_stores" |
191 | | "hospitals" |
192 | | "hotels_motels_and_resorts" |
193 | | "household_appliance_stores" |
194 | | "industrial_supplies" |
195 | | "information_retrieval_services" |
196 | | "insurance_default" |
197 | | "insurance_underwriting_premiums" |
198 | | "intra_company_purchases" |
199 | | "jewelry_stores_watches_clocks_and_silverware_stores" |
200 | | "landscaping_services" |
201 | | "laundries" |
202 | | "laundry_cleaning_services" |
203 | | "legal_services_attorneys" |
204 | | "luggage_and_leather_goods_stores" |
205 | | "lumber_building_materials_stores" |
206 | | "manual_cash_disburse" |
207 | | "marinas_service_and_supplies" |
208 | | "marketplaces" |
209 | | "masonry_stonework_and_plaster" |
210 | | "massage_parlors" |
211 | | "medical_and_dental_labs" |
212 | | "medical_dental_ophthalmic_and_hospital_equipment_and_supplies" |
213 | | "medical_services" |
214 | | "membership_organizations" |
215 | | "mens_and_boys_clothing_and_accessories_stores" |
216 | | "mens_womens_clothing_stores" |
217 | | "metal_service_centers" |
218 | | "miscellaneous" |
219 | | "miscellaneous_apparel_and_accessory_shops" |
220 | | "miscellaneous_auto_dealers" |
221 | | "miscellaneous_business_services" |
222 | | "miscellaneous_food_stores" |
223 | | "miscellaneous_general_merchandise" |
224 | | "miscellaneous_general_services" |
225 | | "miscellaneous_home_furnishing_specialty_stores" |
226 | | "miscellaneous_publishing_and_printing" |
227 | | "miscellaneous_recreation_services" |
228 | | "miscellaneous_repair_shops" |
229 | | "miscellaneous_specialty_retail" |
230 | | "mobile_home_dealers" |
231 | | "motion_picture_theaters" |
232 | | "motor_freight_carriers_and_trucking" |
233 | | "motor_homes_dealers" |
234 | | "motor_vehicle_supplies_and_new_parts" |
235 | | "motorcycle_shops_and_dealers" |
236 | | "motorcycle_shops_dealers" |
237 | | "music_stores_musical_instruments_pianos_and_sheet_music" |
238 | | "news_dealers_and_newsstands" |
239 | | "non_fi_money_orders" |
240 | | "non_fi_stored_value_card_purchase_load" |
241 | | "nondurable_goods" |
242 | | "nurseries_lawn_and_garden_supply_stores" |
243 | | "nursing_personal_care" |
244 | | "office_and_commercial_furniture" |
245 | | "opticians_eyeglasses" |
246 | | "optometrists_ophthalmologist" |
247 | | "orthopedic_goods_prosthetic_devices" |
248 | | "osteopaths" |
249 | | "package_stores_beer_wine_and_liquor" |
250 | | "paints_varnishes_and_supplies" |
251 | | "parking_lots_garages" |
252 | | "passenger_railways" |
253 | | "pawn_shops" |
254 | | "pet_shops_pet_food_and_supplies" |
255 | | "petroleum_and_petroleum_products" |
256 | | "photo_developing" |
257 | | "photographic_photocopy_microfilm_equipment_and_supplies" |
258 | | "photographic_studios" |
259 | | "picture_video_production" |
260 | | "piece_goods_notions_and_other_dry_goods" |
261 | | "plumbing_heating_equipment_and_supplies" |
262 | | "political_organizations" |
263 | | "postal_services_government_only" |
264 | | "precious_stones_and_metals_watches_and_jewelry" |
265 | | "professional_services" |
266 | | "public_warehousing_and_storage" |
267 | | "quick_copy_repro_and_blueprint" |
268 | | "railroads" |
269 | | "real_estate_agents_and_managers_rentals" |
270 | | "record_stores" |
271 | | "recreational_vehicle_rentals" |
272 | | "religious_goods_stores" |
273 | | "religious_organizations" |
274 | | "roofing_siding_sheet_metal" |
275 | | "secretarial_support_services" |
276 | | "security_brokers_dealers" |
277 | | "service_stations" |
278 | | "sewing_needlework_fabric_and_piece_goods_stores" |
279 | | "shoe_repair_hat_cleaning" |
280 | | "shoe_stores" |
281 | | "small_appliance_repair" |
282 | | "snowmobile_dealers" |
283 | | "special_trade_services" |
284 | | "specialty_cleaning" |
285 | | "sporting_goods_stores" |
286 | | "sporting_recreation_camps" |
287 | | "sports_and_riding_apparel_stores" |
288 | | "sports_clubs_fields" |
289 | | "stamp_and_coin_stores" |
290 | | "stationary_office_supplies_printing_and_writing_paper" |
291 | | "stationery_stores_office_and_school_supply_stores" |
292 | | "swimming_pools_sales" |
293 | | "t_ui_travel_germany" |
294 | | "tailors_alterations" |
295 | | "tax_payments_government_agencies" |
296 | | "tax_preparation_services" |
297 | | "taxicabs_limousines" |
298 | | "telecommunication_equipment_and_telephone_sales" |
299 | | "telecommunication_services" |
300 | | "telegraph_services" |
301 | | "tent_and_awning_shops" |
302 | | "testing_laboratories" |
303 | | "theatrical_ticket_agencies" |
304 | | "timeshares" |
305 | | "tire_retreading_and_repair" |
306 | | "tolls_bridge_fees" |
307 | | "tourist_attractions_and_exhibits" |
308 | | "towing_services" |
309 | | "trailer_parks_campgrounds" |
310 | | "transportation_services" |
311 | | "travel_agencies_tour_operators" |
312 | | "truck_stop_iteration" |
313 | | "truck_utility_trailer_rentals" |
314 | | "typesetting_plate_making_and_related_services" |
315 | | "typewriter_stores" |
316 | | "u_s_federal_government_agencies_or_departments" |
317 | | "uniforms_commercial_clothing" |
318 | | "used_merchandise_and_secondhand_stores" |
319 | | "utilities" |
320 | | "variety_stores" |
321 | | "veterinary_services" |
322 | | "video_amusement_game_supplies" |
323 | | "video_game_arcades" |
324 | | "video_tape_rental_stores" |
325 | | "vocational_trade_schools" |
326 | | "watch_jewelry_repair" |
327 | | "welding_repair" |
328 | | "wholesale_clubs" |
329 | | "wig_and_toupee_stores" |
330 | | "wires_money_orders" |
331 | | "womens_accessory_and_specialty_shops" |
332 | | "womens_ready_to_wear_stores" |
333 | | "wrecking_and_salvage_yards" |
334 | )[]; |
335 | blocked_categories?: ( |
336 | | "ac_refrigeration_repair" |
337 | | "accounting_bookkeeping_services" |
338 | | "advertising_services" |
339 | | "agricultural_cooperative" |
340 | | "airlines_air_carriers" |
341 | | "airports_flying_fields" |
342 | | "ambulance_services" |
343 | | "amusement_parks_carnivals" |
344 | | "antique_reproductions" |
345 | | "antique_shops" |
346 | | "aquariums" |
347 | | "architectural_surveying_services" |
348 | | "art_dealers_and_galleries" |
349 | | "artists_supply_and_craft_shops" |
350 | | "auto_and_home_supply_stores" |
351 | | "auto_body_repair_shops" |
352 | | "auto_paint_shops" |
353 | | "auto_service_shops" |
354 | | "automated_cash_disburse" |
355 | | "automated_fuel_dispensers" |
356 | | "automobile_associations" |
357 | | "automotive_parts_and_accessories_stores" |
358 | | "automotive_tire_stores" |
359 | | "bail_and_bond_payments" |
360 | | "bakeries" |
361 | | "bands_orchestras" |
362 | | "barber_and_beauty_shops" |
363 | | "betting_casino_gambling" |
364 | | "bicycle_shops" |
365 | | "billiard_pool_establishments" |
366 | | "boat_dealers" |
367 | | "boat_rentals_and_leases" |
368 | | "book_stores" |
369 | | "books_periodicals_and_newspapers" |
370 | | "bowling_alleys" |
371 | | "bus_lines" |
372 | | "business_secretarial_schools" |
373 | | "buying_shopping_services" |
374 | | "cable_satellite_and_other_pay_television_and_radio" |
375 | | "camera_and_photographic_supply_stores" |
376 | | "candy_nut_and_confectionery_stores" |
377 | | "car_and_truck_dealers_new_used" |
378 | | "car_and_truck_dealers_used_only" |
379 | | "car_rental_agencies" |
380 | | "car_washes" |
381 | | "carpentry_services" |
382 | | "carpet_upholstery_cleaning" |
383 | | "caterers" |
384 | | "charitable_and_social_service_organizations_fundraising" |
385 | | "chemicals_and_allied_products" |
386 | | "child_care_services" |
387 | | "childrens_and_infants_wear_stores" |
388 | | "chiropodists_podiatrists" |
389 | | "chiropractors" |
390 | | "cigar_stores_and_stands" |
391 | | "civic_social_fraternal_associations" |
392 | | "cleaning_and_maintenance" |
393 | | "clothing_rental" |
394 | | "colleges_universities" |
395 | | "commercial_equipment" |
396 | | "commercial_footwear" |
397 | | "commercial_photography_art_and_graphics" |
398 | | "commuter_transport_and_ferries" |
399 | | "computer_network_services" |
400 | | "computer_programming" |
401 | | "computer_repair" |
402 | | "computer_software_stores" |
403 | | "computers_peripherals_and_software" |
404 | | "concrete_work_services" |
405 | | "construction_materials" |
406 | | "consulting_public_relations" |
407 | | "correspondence_schools" |
408 | | "cosmetic_stores" |
409 | | "counseling_services" |
410 | | "country_clubs" |
411 | | "courier_services" |
412 | | "court_costs" |
413 | | "credit_reporting_agencies" |
414 | | "cruise_lines" |
415 | | "dairy_products_stores" |
416 | | "dance_hall_studios_schools" |
417 | | "dating_escort_services" |
418 | | "dentists_orthodontists" |
419 | | "department_stores" |
420 | | "detective_agencies" |
421 | | "digital_goods_applications" |
422 | | "digital_goods_games" |
423 | | "digital_goods_large_volume" |
424 | | "digital_goods_media" |
425 | | "direct_marketing_catalog_merchant" |
426 | | "direct_marketing_combination_catalog_and_retail_merchant" |
427 | | "direct_marketing_inbound_telemarketing" |
428 | | "direct_marketing_insurance_services" |
429 | | "direct_marketing_other" |
430 | | "direct_marketing_outbound_telemarketing" |
431 | | "direct_marketing_subscription" |
432 | | "direct_marketing_travel" |
433 | | "discount_stores" |
434 | | "doctors" |
435 | | "door_to_door_sales" |
436 | | "drapery_window_covering_and_upholstery_stores" |
437 | | "drinking_places" |
438 | | "drug_stores_and_pharmacies" |
439 | | "drugs_drug_proprietaries_and_druggist_sundries" |
440 | | "dry_cleaners" |
441 | | "durable_goods" |
442 | | "duty_free_stores" |
443 | | "eating_places_restaurants" |
444 | | "educational_services" |
445 | | "electric_razor_stores" |
446 | | "electric_vehicle_charging" |
447 | | "electrical_parts_and_equipment" |
448 | | "electrical_services" |
449 | | "electronics_repair_shops" |
450 | | "electronics_stores" |
451 | | "elementary_secondary_schools" |
452 | | "emergency_services_gcas_visa_use_only" |
453 | | "employment_temp_agencies" |
454 | | "equipment_rental" |
455 | | "exterminating_services" |
456 | | "family_clothing_stores" |
457 | | "fast_food_restaurants" |
458 | | "financial_institutions" |
459 | | "fines_government_administrative_entities" |
460 | | "fireplace_fireplace_screens_and_accessories_stores" |
461 | | "floor_covering_stores" |
462 | | "florists" |
463 | | "florists_supplies_nursery_stock_and_flowers" |
464 | | "freezer_and_locker_meat_provisioners" |
465 | | "fuel_dealers_non_automotive" |
466 | | "funeral_services_crematories" |
467 | | "furniture_home_furnishings_and_equipment_stores_except_appliances" |
468 | | "furniture_repair_refinishing" |
469 | | "furriers_and_fur_shops" |
470 | | "general_services" |
471 | | "gift_card_novelty_and_souvenir_shops" |
472 | | "glass_paint_and_wallpaper_stores" |
473 | | "glassware_crystal_stores" |
474 | | "golf_courses_public" |
475 | | "government_licensed_horse_dog_racing_us_region_only" |
476 | | "government_licensed_online_casions_online_gambling_us_region_only" |
477 | | "government_owned_lotteries_non_us_region" |
478 | | "government_owned_lotteries_us_region_only" |
479 | | "government_services" |
480 | | "grocery_stores_supermarkets" |
481 | | "hardware_equipment_and_supplies" |
482 | | "hardware_stores" |
483 | | "health_and_beauty_spas" |
484 | | "hearing_aids_sales_and_supplies" |
485 | | "heating_plumbing_a_c" |
486 | | "hobby_toy_and_game_shops" |
487 | | "home_supply_warehouse_stores" |
488 | | "hospitals" |
489 | | "hotels_motels_and_resorts" |
490 | | "household_appliance_stores" |
491 | | "industrial_supplies" |
492 | | "information_retrieval_services" |
493 | | "insurance_default" |
494 | | "insurance_underwriting_premiums" |
495 | | "intra_company_purchases" |
496 | | "jewelry_stores_watches_clocks_and_silverware_stores" |
497 | | "landscaping_services" |
498 | | "laundries" |
499 | | "laundry_cleaning_services" |
500 | | "legal_services_attorneys" |
501 | | "luggage_and_leather_goods_stores" |
502 | | "lumber_building_materials_stores" |
503 | | "manual_cash_disburse" |
504 | | "marinas_service_and_supplies" |
505 | | "marketplaces" |
506 | | "masonry_stonework_and_plaster" |
507 | | "massage_parlors" |
508 | | "medical_and_dental_labs" |
509 | | "medical_dental_ophthalmic_and_hospital_equipment_and_supplies" |
510 | | "medical_services" |
511 | | "membership_organizations" |
512 | | "mens_and_boys_clothing_and_accessories_stores" |
513 | | "mens_womens_clothing_stores" |
514 | | "metal_service_centers" |
515 | | "miscellaneous" |
516 | | "miscellaneous_apparel_and_accessory_shops" |
517 | | "miscellaneous_auto_dealers" |
518 | | "miscellaneous_business_services" |
519 | | "miscellaneous_food_stores" |
520 | | "miscellaneous_general_merchandise" |
521 | | "miscellaneous_general_services" |
522 | | "miscellaneous_home_furnishing_specialty_stores" |
523 | | "miscellaneous_publishing_and_printing" |
524 | | "miscellaneous_recreation_services" |
525 | | "miscellaneous_repair_shops" |
526 | | "miscellaneous_specialty_retail" |
527 | | "mobile_home_dealers" |
528 | | "motion_picture_theaters" |
529 | | "motor_freight_carriers_and_trucking" |
530 | | "motor_homes_dealers" |
531 | | "motor_vehicle_supplies_and_new_parts" |
532 | | "motorcycle_shops_and_dealers" |
533 | | "motorcycle_shops_dealers" |
534 | | "music_stores_musical_instruments_pianos_and_sheet_music" |
535 | | "news_dealers_and_newsstands" |
536 | | "non_fi_money_orders" |
537 | | "non_fi_stored_value_card_purchase_load" |
538 | | "nondurable_goods" |
539 | | "nurseries_lawn_and_garden_supply_stores" |
540 | | "nursing_personal_care" |
541 | | "office_and_commercial_furniture" |
542 | | "opticians_eyeglasses" |
543 | | "optometrists_ophthalmologist" |
544 | | "orthopedic_goods_prosthetic_devices" |
545 | | "osteopaths" |
546 | | "package_stores_beer_wine_and_liquor" |
547 | | "paints_varnishes_and_supplies" |
548 | | "parking_lots_garages" |
549 | | "passenger_railways" |
550 | | "pawn_shops" |
551 | | "pet_shops_pet_food_and_supplies" |
552 | | "petroleum_and_petroleum_products" |
553 | | "photo_developing" |
554 | | "photographic_photocopy_microfilm_equipment_and_supplies" |
555 | | "photographic_studios" |
556 | | "picture_video_production" |
557 | | "piece_goods_notions_and_other_dry_goods" |
558 | | "plumbing_heating_equipment_and_supplies" |
559 | | "political_organizations" |
560 | | "postal_services_government_only" |
561 | | "precious_stones_and_metals_watches_and_jewelry" |
562 | | "professional_services" |
563 | | "public_warehousing_and_storage" |
564 | | "quick_copy_repro_and_blueprint" |
565 | | "railroads" |
566 | | "real_estate_agents_and_managers_rentals" |
567 | | "record_stores" |
568 | | "recreational_vehicle_rentals" |
569 | | "religious_goods_stores" |
570 | | "religious_organizations" |
571 | | "roofing_siding_sheet_metal" |
572 | | "secretarial_support_services" |
573 | | "security_brokers_dealers" |
574 | | "service_stations" |
575 | | "sewing_needlework_fabric_and_piece_goods_stores" |
576 | | "shoe_repair_hat_cleaning" |
577 | | "shoe_stores" |
578 | | "small_appliance_repair" |
579 | | "snowmobile_dealers" |
580 | | "special_trade_services" |
581 | | "specialty_cleaning" |
582 | | "sporting_goods_stores" |
583 | | "sporting_recreation_camps" |
584 | | "sports_and_riding_apparel_stores" |
585 | | "sports_clubs_fields" |
586 | | "stamp_and_coin_stores" |
587 | | "stationary_office_supplies_printing_and_writing_paper" |
588 | | "stationery_stores_office_and_school_supply_stores" |
589 | | "swimming_pools_sales" |
590 | | "t_ui_travel_germany" |
591 | | "tailors_alterations" |
592 | | "tax_payments_government_agencies" |
593 | | "tax_preparation_services" |
594 | | "taxicabs_limousines" |
595 | | "telecommunication_equipment_and_telephone_sales" |
596 | | "telecommunication_services" |
597 | | "telegraph_services" |
598 | | "tent_and_awning_shops" |
599 | | "testing_laboratories" |
600 | | "theatrical_ticket_agencies" |
601 | | "timeshares" |
602 | | "tire_retreading_and_repair" |
603 | | "tolls_bridge_fees" |
604 | | "tourist_attractions_and_exhibits" |
605 | | "towing_services" |
606 | | "trailer_parks_campgrounds" |
607 | | "transportation_services" |
608 | | "travel_agencies_tour_operators" |
609 | | "truck_stop_iteration" |
610 | | "truck_utility_trailer_rentals" |
611 | | "typesetting_plate_making_and_related_services" |
612 | | "typewriter_stores" |
613 | | "u_s_federal_government_agencies_or_departments" |
614 | | "uniforms_commercial_clothing" |
615 | | "used_merchandise_and_secondhand_stores" |
616 | | "utilities" |
617 | | "variety_stores" |
618 | | "veterinary_services" |
619 | | "video_amusement_game_supplies" |
620 | | "video_game_arcades" |
621 | | "video_tape_rental_stores" |
622 | | "vocational_trade_schools" |
623 | | "watch_jewelry_repair" |
624 | | "welding_repair" |
625 | | "wholesale_clubs" |
626 | | "wig_and_toupee_stores" |
627 | | "wires_money_orders" |
628 | | "womens_accessory_and_specialty_shops" |
629 | | "womens_ready_to_wear_stores" |
630 | | "wrecking_and_salvage_yards" |
631 | )[]; |
632 | spending_limits?: { |
633 | amount: number; |
634 | categories?: ( |
635 | | "ac_refrigeration_repair" |
636 | | "accounting_bookkeeping_services" |
637 | | "advertising_services" |
638 | | "agricultural_cooperative" |
639 | | "airlines_air_carriers" |
640 | | "airports_flying_fields" |
641 | | "ambulance_services" |
642 | | "amusement_parks_carnivals" |
643 | | "antique_reproductions" |
644 | | "antique_shops" |
645 | | "aquariums" |
646 | | "architectural_surveying_services" |
647 | | "art_dealers_and_galleries" |
648 | | "artists_supply_and_craft_shops" |
649 | | "auto_and_home_supply_stores" |
650 | | "auto_body_repair_shops" |
651 | | "auto_paint_shops" |
652 | | "auto_service_shops" |
653 | | "automated_cash_disburse" |
654 | | "automated_fuel_dispensers" |
655 | | "automobile_associations" |
656 | | "automotive_parts_and_accessories_stores" |
657 | | "automotive_tire_stores" |
658 | | "bail_and_bond_payments" |
659 | | "bakeries" |
660 | | "bands_orchestras" |
661 | | "barber_and_beauty_shops" |
662 | | "betting_casino_gambling" |
663 | | "bicycle_shops" |
664 | | "billiard_pool_establishments" |
665 | | "boat_dealers" |
666 | | "boat_rentals_and_leases" |
667 | | "book_stores" |
668 | | "books_periodicals_and_newspapers" |
669 | | "bowling_alleys" |
670 | | "bus_lines" |
671 | | "business_secretarial_schools" |
672 | | "buying_shopping_services" |
673 | | "cable_satellite_and_other_pay_television_and_radio" |
674 | | "camera_and_photographic_supply_stores" |
675 | | "candy_nut_and_confectionery_stores" |
676 | | "car_and_truck_dealers_new_used" |
677 | | "car_and_truck_dealers_used_only" |
678 | | "car_rental_agencies" |
679 | | "car_washes" |
680 | | "carpentry_services" |
681 | | "carpet_upholstery_cleaning" |
682 | | "caterers" |
683 | | "charitable_and_social_service_organizations_fundraising" |
684 | | "chemicals_and_allied_products" |
685 | | "child_care_services" |
686 | | "childrens_and_infants_wear_stores" |
687 | | "chiropodists_podiatrists" |
688 | | "chiropractors" |
689 | | "cigar_stores_and_stands" |
690 | | "civic_social_fraternal_associations" |
691 | | "cleaning_and_maintenance" |
692 | | "clothing_rental" |
693 | | "colleges_universities" |
694 | | "commercial_equipment" |
695 | | "commercial_footwear" |
696 | | "commercial_photography_art_and_graphics" |
697 | | "commuter_transport_and_ferries" |
698 | | "computer_network_services" |
699 | | "computer_programming" |
700 | | "computer_repair" |
701 | | "computer_software_stores" |
702 | | "computers_peripherals_and_software" |
703 | | "concrete_work_services" |
704 | | "construction_materials" |
705 | | "consulting_public_relations" |
706 | | "correspondence_schools" |
707 | | "cosmetic_stores" |
708 | | "counseling_services" |
709 | | "country_clubs" |
710 | | "courier_services" |
711 | | "court_costs" |
712 | | "credit_reporting_agencies" |
713 | | "cruise_lines" |
714 | | "dairy_products_stores" |
715 | | "dance_hall_studios_schools" |
716 | | "dating_escort_services" |
717 | | "dentists_orthodontists" |
718 | | "department_stores" |
719 | | "detective_agencies" |
720 | | "digital_goods_applications" |
721 | | "digital_goods_games" |
722 | | "digital_goods_large_volume" |
723 | | "digital_goods_media" |
724 | | "direct_marketing_catalog_merchant" |
725 | | "direct_marketing_combination_catalog_and_retail_merchant" |
726 | | "direct_marketing_inbound_telemarketing" |
727 | | "direct_marketing_insurance_services" |
728 | | "direct_marketing_other" |
729 | | "direct_marketing_outbound_telemarketing" |
730 | | "direct_marketing_subscription" |
731 | | "direct_marketing_travel" |
732 | | "discount_stores" |
733 | | "doctors" |
734 | | "door_to_door_sales" |
735 | | "drapery_window_covering_and_upholstery_stores" |
736 | | "drinking_places" |
737 | | "drug_stores_and_pharmacies" |
738 | | "drugs_drug_proprietaries_and_druggist_sundries" |
739 | | "dry_cleaners" |
740 | | "durable_goods" |
741 | | "duty_free_stores" |
742 | | "eating_places_restaurants" |
743 | | "educational_services" |
744 | | "electric_razor_stores" |
745 | | "electric_vehicle_charging" |
746 | | "electrical_parts_and_equipment" |
747 | | "electrical_services" |
748 | | "electronics_repair_shops" |
749 | | "electronics_stores" |
750 | | "elementary_secondary_schools" |
751 | | "emergency_services_gcas_visa_use_only" |
752 | | "employment_temp_agencies" |
753 | | "equipment_rental" |
754 | | "exterminating_services" |
755 | | "family_clothing_stores" |
756 | | "fast_food_restaurants" |
757 | | "financial_institutions" |
758 | | "fines_government_administrative_entities" |
759 | | "fireplace_fireplace_screens_and_accessories_stores" |
760 | | "floor_covering_stores" |
761 | | "florists" |
762 | | "florists_supplies_nursery_stock_and_flowers" |
763 | | "freezer_and_locker_meat_provisioners" |
764 | | "fuel_dealers_non_automotive" |
765 | | "funeral_services_crematories" |
766 | | "furniture_home_furnishings_and_equipment_stores_except_appliances" |
767 | | "furniture_repair_refinishing" |
768 | | "furriers_and_fur_shops" |
769 | | "general_services" |
770 | | "gift_card_novelty_and_souvenir_shops" |
771 | | "glass_paint_and_wallpaper_stores" |
772 | | "glassware_crystal_stores" |
773 | | "golf_courses_public" |
774 | | "government_licensed_horse_dog_racing_us_region_only" |
775 | | "government_licensed_online_casions_online_gambling_us_region_only" |
776 | | "government_owned_lotteries_non_us_region" |
777 | | "government_owned_lotteries_us_region_only" |
778 | | "government_services" |
779 | | "grocery_stores_supermarkets" |
780 | | "hardware_equipment_and_supplies" |
781 | | "hardware_stores" |
782 | | "health_and_beauty_spas" |
783 | | "hearing_aids_sales_and_supplies" |
784 | | "heating_plumbing_a_c" |
785 | | "hobby_toy_and_game_shops" |
786 | | "home_supply_warehouse_stores" |
787 | | "hospitals" |
788 | | "hotels_motels_and_resorts" |
789 | | "household_appliance_stores" |
790 | | "industrial_supplies" |
791 | | "information_retrieval_services" |
792 | | "insurance_default" |
793 | | "insurance_underwriting_premiums" |
794 | | "intra_company_purchases" |
795 | | "jewelry_stores_watches_clocks_and_silverware_stores" |
796 | | "landscaping_services" |
797 | | "laundries" |
798 | | "laundry_cleaning_services" |
799 | | "legal_services_attorneys" |
800 | | "luggage_and_leather_goods_stores" |
801 | | "lumber_building_materials_stores" |
802 | | "manual_cash_disburse" |
803 | | "marinas_service_and_supplies" |
804 | | "marketplaces" |
805 | | "masonry_stonework_and_plaster" |
806 | | "massage_parlors" |
807 | | "medical_and_dental_labs" |
808 | | "medical_dental_ophthalmic_and_hospital_equipment_and_supplies" |
809 | | "medical_services" |
810 | | "membership_organizations" |
811 | | "mens_and_boys_clothing_and_accessories_stores" |
812 | | "mens_womens_clothing_stores" |
813 | | "metal_service_centers" |
814 | | "miscellaneous" |
815 | | "miscellaneous_apparel_and_accessory_shops" |
816 | | "miscellaneous_auto_dealers" |
817 | | "miscellaneous_business_services" |
818 | | "miscellaneous_food_stores" |
819 | | "miscellaneous_general_merchandise" |
820 | | "miscellaneous_general_services" |
821 | | "miscellaneous_home_furnishing_specialty_stores" |
822 | | "miscellaneous_publishing_and_printing" |
823 | | "miscellaneous_recreation_services" |
824 | | "miscellaneous_repair_shops" |
825 | | "miscellaneous_specialty_retail" |
826 | | "mobile_home_dealers" |
827 | | "motion_picture_theaters" |
828 | | "motor_freight_carriers_and_trucking" |
829 | | "motor_homes_dealers" |
830 | | "motor_vehicle_supplies_and_new_parts" |
831 | | "motorcycle_shops_and_dealers" |
832 | | "motorcycle_shops_dealers" |
833 | | "music_stores_musical_instruments_pianos_and_sheet_music" |
834 | | "news_dealers_and_newsstands" |
835 | | "non_fi_money_orders" |
836 | | "non_fi_stored_value_card_purchase_load" |
837 | | "nondurable_goods" |
838 | | "nurseries_lawn_and_garden_supply_stores" |
839 | | "nursing_personal_care" |
840 | | "office_and_commercial_furniture" |
841 | | "opticians_eyeglasses" |
842 | | "optometrists_ophthalmologist" |
843 | | "orthopedic_goods_prosthetic_devices" |
844 | | "osteopaths" |
845 | | "package_stores_beer_wine_and_liquor" |
846 | | "paints_varnishes_and_supplies" |
847 | | "parking_lots_garages" |
848 | | "passenger_railways" |
849 | | "pawn_shops" |
850 | | "pet_shops_pet_food_and_supplies" |
851 | | "petroleum_and_petroleum_products" |
852 | | "photo_developing" |
853 | | "photographic_photocopy_microfilm_equipment_and_supplies" |
854 | | "photographic_studios" |
855 | | "picture_video_production" |
856 | | "piece_goods_notions_and_other_dry_goods" |
857 | | "plumbing_heating_equipment_and_supplies" |
858 | | "political_organizations" |
859 | | "postal_services_government_only" |
860 | | "precious_stones_and_metals_watches_and_jewelry" |
861 | | "professional_services" |
862 | | "public_warehousing_and_storage" |
863 | | "quick_copy_repro_and_blueprint" |
864 | | "railroads" |
865 | | "real_estate_agents_and_managers_rentals" |
866 | | "record_stores" |
867 | | "recreational_vehicle_rentals" |
868 | | "religious_goods_stores" |
869 | | "religious_organizations" |
870 | | "roofing_siding_sheet_metal" |
871 | | "secretarial_support_services" |
872 | | "security_brokers_dealers" |
873 | | "service_stations" |
874 | | "sewing_needlework_fabric_and_piece_goods_stores" |
875 | | "shoe_repair_hat_cleaning" |
876 | | "shoe_stores" |
877 | | "small_appliance_repair" |
878 | | "snowmobile_dealers" |
879 | | "special_trade_services" |
880 | | "specialty_cleaning" |
881 | | "sporting_goods_stores" |
882 | | "sporting_recreation_camps" |
883 | | "sports_and_riding_apparel_stores" |
884 | | "sports_clubs_fields" |
885 | | "stamp_and_coin_stores" |
886 | | "stationary_office_supplies_printing_and_writing_paper" |
887 | | "stationery_stores_office_and_school_supply_stores" |
888 | | "swimming_pools_sales" |
889 | | "t_ui_travel_germany" |
890 | | "tailors_alterations" |
891 | | "tax_payments_government_agencies" |
892 | | "tax_preparation_services" |
893 | | "taxicabs_limousines" |
894 | | "telecommunication_equipment_and_telephone_sales" |
895 | | "telecommunication_services" |
896 | | "telegraph_services" |
897 | | "tent_and_awning_shops" |
898 | | "testing_laboratories" |
899 | | "theatrical_ticket_agencies" |
900 | | "timeshares" |
901 | | "tire_retreading_and_repair" |
902 | | "tolls_bridge_fees" |
903 | | "tourist_attractions_and_exhibits" |
904 | | "towing_services" |
905 | | "trailer_parks_campgrounds" |
906 | | "transportation_services" |
907 | | "travel_agencies_tour_operators" |
908 | | "truck_stop_iteration" |
909 | | "truck_utility_trailer_rentals" |
910 | | "typesetting_plate_making_and_related_services" |
911 | | "typewriter_stores" |
912 | | "u_s_federal_government_agencies_or_departments" |
913 | | "uniforms_commercial_clothing" |
914 | | "used_merchandise_and_secondhand_stores" |
915 | | "utilities" |
916 | | "variety_stores" |
917 | | "veterinary_services" |
918 | | "video_amusement_game_supplies" |
919 | | "video_game_arcades" |
920 | | "video_tape_rental_stores" |
921 | | "vocational_trade_schools" |
922 | | "watch_jewelry_repair" |
923 | | "welding_repair" |
924 | | "wholesale_clubs" |
925 | | "wig_and_toupee_stores" |
926 | | "wires_money_orders" |
927 | | "womens_accessory_and_specialty_shops" |
928 | | "womens_ready_to_wear_stores" |
929 | | "wrecking_and_salvage_yards" |
930 | )[]; |
931 | interval: |
932 | | "all_time" |
933 | | "daily" |
934 | | "monthly" |
935 | | "per_authorization" |
936 | | "weekly" |
937 | | "yearly"; |
938 | [k: string]: unknown; |
939 | }[]; |
940 | [k: string]: unknown; |
941 | }; |
942 | status?: "active" | "inactive"; |
943 | type: "physical" | "virtual"; |
944 | } |
945 | ) { |
946 | const url = new URL(`https://api.stripe.com/v1/issuing/cards`); |
947 |
|
948 | const response = await fetch(url, { |
949 | method: "POST", |
950 | headers: { |
951 | "Content-Type": "application/x-www-form-urlencoded", |
952 | Authorization: "Bearer " + auth.token, |
953 | }, |
954 | body: encodeParams(body), |
955 | }); |
956 | if (!response.ok) { |
957 | const text = await response.text(); |
958 | throw new Error(`${response.status} ${text}`); |
959 | } |
960 | return await response.json(); |
961 | } |
962 |
|
963 | function encodeParams(o: any) { |
964 | function iter(o: any, path: string) { |
965 | if (Array.isArray(o)) { |
966 | o.forEach(function (a) { |
967 | iter(a, path + "[]"); |
968 | }); |
969 | return; |
970 | } |
971 | if (o !== null && typeof o === "object") { |
972 | Object.keys(o).forEach(function (k) { |
973 | iter(o[k], path + "[" + k + "]"); |
974 | }); |
975 | return; |
976 | } |
977 | data.push(path + "=" + o); |
978 | } |
979 | const data: string[] = []; |
980 | Object.keys(o).forEach(function (k) { |
981 | if (o[k] !== undefined) { |
982 | iter(o[k], k); |
983 | } |
984 | }); |
985 | return new URLSearchParams(data.join("&")); |
986 | } |
987 |
|