You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### [customerKey로 카드 자동 결제 빌링키 발급 요청](https://docs.tosspayments.com/reference#customerkey%EB%A1%9C-%EC%B9%B4%EB%93%9C-%EC%9E%90%EB%8F%99-%EA%B2%B0%EC%A0%9C-%EB%B9%8C%EB%A7%81%ED%82%A4-%EB%B0%9C%EA%B8%89-%EC%9A%94%EC%B2%AD)
62
+
[예제 보기](examples/BILLING.md)
183
63
184
-
POST /v1/billing/authorizations/card
185
-
186
-
```php
187
-
use Getsolaris\LaravelTossPayments\TossPayments;
188
-
use Getsolaris\LaravelTossPayments\Attributes\Billing;
189
-
190
-
$billing = TossPayments::for(Billing::class)
191
-
->customerKey($customerKey)
192
-
->cardNumber($cardNumber)
193
-
->cardExpirationYear($cardExpirationYear)
194
-
->cardExpirationMonth($cardExpirationMonth)
195
-
->customerIdentityNumber($customerIdentityNumber)
196
-
->authorizationsCard();
197
-
198
-
return $billing->json();
199
-
```
200
-
201
-
### [authKey로 카드 자동 결제 빌링키 발급 요청](https://docs.tosspayments.com/reference#authkey%EB%A1%9C-%EC%B9%B4%EB%93%9C-%EC%9E%90%EB%8F%99-%EA%B2%B0%EC%A0%9C-%EB%B9%8C%EB%A7%81%ED%82%A4-%EB%B0%9C%EA%B8%89-%EC%9A%94%EC%B2%AD)
202
-
203
-
POST /v1/billing/authorizations/issue
204
-
205
-
```php
206
-
use Getsolaris\LaravelTossPayments\TossPayments;
207
-
use Getsolaris\LaravelTossPayments\Attributes\Billing;
208
-
209
-
$billing = TossPayments::for(Billing::class)
210
-
->customerKey($customerKey)
211
-
->authKey($authKey)
212
-
->authorizationsIssue();
213
-
214
-
return $billing->json();
215
-
```
216
-
217
-
### [카드 자동 결제 승인 요청](https://docs.tosspayments.com/reference#%EC%B9%B4%EB%93%9C-%EC%9E%90%EB%8F%99-%EA%B2%B0%EC%A0%9C-%EC%8A%B9%EC%9D%B8-%EC%9A%94%EC%B2%AD)
218
-
219
-
POST /v1/billing/{billingKey}
220
-
221
-
```php
222
-
use Getsolaris\LaravelTossPayments\TossPayments;
223
-
use Getsolaris\LaravelTossPayments\Attributes\Billing;
### [customerKey로 카드 자동 결제 빌링키 발급 요청](https://docs.tosspayments.com/reference#customerkey%EB%A1%9C-%EC%B9%B4%EB%93%9C-%EC%9E%90%EB%8F%99-%EA%B2%B0%EC%A0%9C-%EB%B9%8C%EB%A7%81%ED%82%A4-%EB%B0%9C%EA%B8%89-%EC%9A%94%EC%B2%AD)
4
+
5
+
POST /v1/billing/authorizations/card
6
+
7
+
```php
8
+
use Getsolaris\LaravelTossPayments\TossPayments;
9
+
use Getsolaris\LaravelTossPayments\Attributes\Billing;
10
+
11
+
$billing = TossPayments::for(Billing::class)
12
+
->customerKey($customerKey)
13
+
->cardNumber($cardNumber)
14
+
->cardExpirationYear($cardExpirationYear)
15
+
->cardExpirationMonth($cardExpirationMonth)
16
+
->customerIdentityNumber($customerIdentityNumber)
17
+
->authorizationsCard();
18
+
19
+
return $billing->json();
20
+
```
21
+
22
+
### [authKey로 카드 자동 결제 빌링키 발급 요청](https://docs.tosspayments.com/reference#authkey%EB%A1%9C-%EC%B9%B4%EB%93%9C-%EC%9E%90%EB%8F%99-%EA%B2%B0%EC%A0%9C-%EB%B9%8C%EB%A7%81%ED%82%A4-%EB%B0%9C%EA%B8%89-%EC%9A%94%EC%B2%AD)
23
+
24
+
POST /v1/billing/authorizations/issue
25
+
26
+
```php
27
+
use Getsolaris\LaravelTossPayments\TossPayments;
28
+
use Getsolaris\LaravelTossPayments\Attributes\Billing;
29
+
30
+
$billing = TossPayments::for(Billing::class)
31
+
->customerKey($customerKey)
32
+
->authKey($authKey)
33
+
->authorizationsIssue();
34
+
35
+
return $billing->json();
36
+
```
37
+
38
+
### [카드 자동 결제 승인 요청](https://docs.tosspayments.com/reference#%EC%B9%B4%EB%93%9C-%EC%9E%90%EB%8F%99-%EA%B2%B0%EC%A0%9C-%EC%8A%B9%EC%9D%B8-%EC%9A%94%EC%B2%AD)
39
+
40
+
POST /v1/billing/{billingKey}
41
+
42
+
```php
43
+
use Getsolaris\LaravelTossPayments\TossPayments;
44
+
use Getsolaris\LaravelTossPayments\Attributes\Billing;
0 commit comments