Skip to content

Commit 687ac29

Browse files
committed
[Librarian] Regenerated @ e229c81d086276743ccce5ac8e1e19c4ad654adb 190899e14f985d8b58f0b5a70c5f7156b7333d28
1 parent 15969b6 commit 687ac29

File tree

808 files changed

+3098
-1231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

808 files changed

+3098
-1231
lines changed

CHANGES.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
twilio-php Changelog
22
====================
33

4+
[2025-04-07] Version 8.5.0
5+
--------------------------
6+
**Library - Docs**
7+
- [PR #862](https://github.com/twilio/twilio-php/pull/862): update readme for oauth feature. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
8+
9+
**Library - Feature**
10+
- [PR #854](https://github.com/twilio/twilio-php/pull/854): merge OAuth support into main. Thanks to [@manisha1997](https://github.com/manisha1997)!
11+
12+
**Studio**
13+
- Add documentation for parent_step_sid field in Step resource
14+
15+
416
[2025-03-20] Version 8.4.1
517
--------------------------
618
**Library - Chore**

src/Twilio/Rest/Accounts/V1/AuthTokenPromotionContext.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function __construct(
5151
public function update(): AuthTokenPromotionInstance
5252
{
5353

54-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
54+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
5555
$payload = $this->version->update('POST', $this->uri, [], [], $headers);
5656

5757
return new AuthTokenPromotionInstance(

src/Twilio/Rest/Accounts/V1/BulkConsentsList.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function create(array $items): BulkConsentsInstance
5757
Serialize::map($items,function ($e) { return Serialize::jsonObject($e); }),
5858
]);
5959

60-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
60+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
6161
$payload = $this->version->create('POST', $this->uri, [], $data, $headers);
6262

6363
return new BulkConsentsInstance(

src/Twilio/Rest/Accounts/V1/BulkContactsList.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function create(array $items): BulkContactsInstance
5757
Serialize::map($items,function ($e) { return Serialize::jsonObject($e); }),
5858
]);
5959

60-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
60+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
6161
$payload = $this->version->create('POST', $this->uri, [], $data, $headers);
6262

6363
return new BulkContactsInstance(

src/Twilio/Rest/Accounts/V1/Credential/AwsContext.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function delete(): bool
7171
public function fetch(): AwsInstance
7272
{
7373

74-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
74+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
7575
$payload = $this->version->fetch('GET', $this->uri, [], [], $headers);
7676

7777
return new AwsInstance(
@@ -99,7 +99,7 @@ public function update(array $options = []): AwsInstance
9999
$options['friendlyName'],
100100
]);
101101

102-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
102+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
103103
$payload = $this->version->update('POST', $this->uri, [], $data, $headers);
104104

105105
return new AwsInstance(

src/Twilio/Rest/Accounts/V1/Credential/AwsList.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function create(string $credentials, array $options = []): AwsInstance
6565
$options['accountSid'],
6666
]);
6767

68-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
68+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
6969
$payload = $this->version->create('POST', $this->uri, [], $data, $headers);
7070

7171
return new AwsInstance(
@@ -144,7 +144,8 @@ public function page(
144144
'PageSize' => $pageSize,
145145
]);
146146

147-
$response = $this->version->page('GET', $this->uri, $params);
147+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
148+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
148149

149150
return new AwsPage($this->version, $response, $this->solution);
150151
}

src/Twilio/Rest/Accounts/V1/Credential/PublicKeyContext.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function delete(): bool
7171
public function fetch(): PublicKeyInstance
7272
{
7373

74-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
74+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
7575
$payload = $this->version->fetch('GET', $this->uri, [], [], $headers);
7676

7777
return new PublicKeyInstance(
@@ -99,7 +99,7 @@ public function update(array $options = []): PublicKeyInstance
9999
$options['friendlyName'],
100100
]);
101101

102-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
102+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
103103
$payload = $this->version->update('POST', $this->uri, [], $data, $headers);
104104

105105
return new PublicKeyInstance(

src/Twilio/Rest/Accounts/V1/Credential/PublicKeyList.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function create(string $publicKey, array $options = []): PublicKeyInstanc
6565
$options['accountSid'],
6666
]);
6767

68-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
68+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
6969
$payload = $this->version->create('POST', $this->uri, [], $data, $headers);
7070

7171
return new PublicKeyInstance(
@@ -144,7 +144,8 @@ public function page(
144144
'PageSize' => $pageSize,
145145
]);
146146

147-
$response = $this->version->page('GET', $this->uri, $params);
147+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
148+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
148149

149150
return new PublicKeyPage($this->version, $response, $this->solution);
150151
}

src/Twilio/Rest/Accounts/V1/SafelistList.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function create(string $phoneNumber): SafelistInstance
5757
$phoneNumber,
5858
]);
5959

60-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
60+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
6161
$payload = $this->version->create('POST', $this->uri, [], $data, $headers);
6262

6363
return new SafelistInstance(
@@ -106,7 +106,7 @@ public function fetch(array $options = []): SafelistInstance
106106
$options['phoneNumber'],
107107
]);
108108

109-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
109+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
110110
$payload = $this->version->fetch('GET', $this->uri, $params, [], $headers);
111111

112112
return new SafelistInstance(

src/Twilio/Rest/Accounts/V1/SecondaryAuthTokenContext.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function __construct(
5151
public function create(): SecondaryAuthTokenInstance
5252
{
5353

54-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
54+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
5555
$payload = $this->version->create('POST', $this->uri, [], [], $headers);
5656

5757
return new SecondaryAuthTokenInstance(

src/Twilio/Rest/Api/V2010/Account/Address/DependentPhoneNumberList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ public function page(
122122
'PageSize' => $pageSize,
123123
]);
124124

125-
$response = $this->version->page('GET', $this->uri, $params);
125+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
126+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
126127

127128
return new DependentPhoneNumberPage($this->version, $response, $this->solution);
128129
}

src/Twilio/Rest/Api/V2010/Account/AddressContext.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function delete(): bool
8484
public function fetch(): AddressInstance
8585
{
8686

87-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
87+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
8888
$payload = $this->version->fetch('GET', $this->uri, [], [], $headers);
8989

9090
return new AddressInstance(
@@ -129,7 +129,7 @@ public function update(array $options = []): AddressInstance
129129
$options['streetSecondary'],
130130
]);
131131

132-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
132+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
133133
$payload = $this->version->update('POST', $this->uri, [], $data, $headers);
134134

135135
return new AddressInstance(

src/Twilio/Rest/Api/V2010/Account/AddressList.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function create(string $customerName, string $street, string $city, strin
9191
$options['streetSecondary'],
9292
]);
9393

94-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
94+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
9595
$payload = $this->version->create('POST', $this->uri, [], $data, $headers);
9696

9797
return new AddressInstance(
@@ -183,7 +183,8 @@ public function page(
183183
'PageSize' => $pageSize,
184184
]);
185185

186-
$response = $this->version->page('GET', $this->uri, $params);
186+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
187+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
187188

188189
return new AddressPage($this->version, $response, $this->solution);
189190
}

src/Twilio/Rest/Api/V2010/Account/ApplicationContext.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function delete(): bool
7777
public function fetch(): ApplicationInstance
7878
{
7979

80-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
80+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
8181
$payload = $this->version->fetch('GET', $this->uri, [], [], $headers);
8282

8383
return new ApplicationInstance(
@@ -136,7 +136,7 @@ public function update(array $options = []): ApplicationInstance
136136
Serialize::booleanToString($options['publicApplicationConnectEnabled']),
137137
]);
138138

139-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
139+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
140140
$payload = $this->version->update('POST', $this->uri, [], $data, $headers);
141141

142142
return new ApplicationInstance(

src/Twilio/Rest/Api/V2010/Account/ApplicationList.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function create(array $options = []): ApplicationInstance
9797
Serialize::booleanToString($options['publicApplicationConnectEnabled']),
9898
]);
9999

100-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
100+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
101101
$payload = $this->version->create('POST', $this->uri, [], $data, $headers);
102102

103103
return new ApplicationInstance(
@@ -183,7 +183,8 @@ public function page(
183183
'PageSize' => $pageSize,
184184
]);
185185

186-
$response = $this->version->page('GET', $this->uri, $params);
186+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
187+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
187188

188189
return new ApplicationPage($this->version, $response, $this->solution);
189190
}

src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppContext.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function __construct(
6161
public function fetch(): AuthorizedConnectAppInstance
6262
{
6363

64-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
64+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
6565
$payload = $this->version->fetch('GET', $this->uri, [], [], $headers);
6666

6767
return new AuthorizedConnectAppInstance(

src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ public function page(
116116
'PageSize' => $pageSize,
117117
]);
118118

119-
$response = $this->version->page('GET', $this->uri, $params);
119+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
120+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
120121

121122
return new AuthorizedConnectAppPage($this->version, $response, $this->solution);
122123
}

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/LocalList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ public function page(
164164
'PageSize' => $pageSize,
165165
]);
166166

167-
$response = $this->version->page('GET', $this->uri, $params);
167+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
168+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
168169

169170
return new LocalPage($this->version, $response, $this->solution);
170171
}

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MachineToMachineList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ public function page(
164164
'PageSize' => $pageSize,
165165
]);
166166

167-
$response = $this->version->page('GET', $this->uri, $params);
167+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
168+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
168169

169170
return new MachineToMachinePage($this->version, $response, $this->solution);
170171
}

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MobileList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ public function page(
164164
'PageSize' => $pageSize,
165165
]);
166166

167-
$response = $this->version->page('GET', $this->uri, $params);
167+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
168+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
168169

169170
return new MobilePage($this->version, $response, $this->solution);
170171
}

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/NationalList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ public function page(
164164
'PageSize' => $pageSize,
165165
]);
166166

167-
$response = $this->version->page('GET', $this->uri, $params);
167+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
168+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
168169

169170
return new NationalPage($this->version, $response, $this->solution);
170171
}

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/SharedCostList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ public function page(
164164
'PageSize' => $pageSize,
165165
]);
166166

167-
$response = $this->version->page('GET', $this->uri, $params);
167+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
168+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
168169

169170
return new SharedCostPage($this->version, $response, $this->solution);
170171
}

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/TollFreeList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ public function page(
164164
'PageSize' => $pageSize,
165165
]);
166166

167-
$response = $this->version->page('GET', $this->uri, $params);
167+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
168+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
168169

169170
return new TollFreePage($this->version, $response, $this->solution);
170171
}

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/VoipList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ public function page(
164164
'PageSize' => $pageSize,
165165
]);
166166

167-
$response = $this->version->page('GET', $this->uri, $params);
167+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
168+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
168169

169170
return new VoipPage($this->version, $response, $this->solution);
170171
}

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryContext.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function __construct(
8686
public function fetch(): AvailablePhoneNumberCountryInstance
8787
{
8888

89-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
89+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
9090
$payload = $this->version->fetch('GET', $this->uri, [], [], $headers);
9191

9292
return new AvailablePhoneNumberCountryInstance(

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ public function page(
116116
'PageSize' => $pageSize,
117117
]);
118118

119-
$response = $this->version->page('GET', $this->uri, $params);
119+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
120+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
120121

121122
return new AvailablePhoneNumberCountryPage($this->version, $response, $this->solution);
122123
}

src/Twilio/Rest/Api/V2010/Account/BalanceList.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function __construct(
5656
public function fetch(): BalanceInstance
5757
{
5858

59-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
59+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
6060
$payload = $this->version->fetch('GET', $this->uri, [], [], $headers);
6161

6262
return new BalanceInstance(

src/Twilio/Rest/Api/V2010/Account/Call/EventList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ public function page(
122122
'PageSize' => $pageSize,
123123
]);
124124

125-
$response = $this->version->page('GET', $this->uri, $params);
125+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
126+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
126127

127128
return new EventPage($this->version, $response, $this->solution);
128129
}

src/Twilio/Rest/Api/V2010/Account/Call/NotificationContext.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function __construct(
6666
public function fetch(): NotificationInstance
6767
{
6868

69-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
69+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
7070
$payload = $this->version->fetch('GET', $this->uri, [], [], $headers);
7171

7272
return new NotificationInstance(

src/Twilio/Rest/Api/V2010/Account/Call/NotificationList.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ public function page(
136136
'PageSize' => $pageSize,
137137
]);
138138

139-
$response = $this->version->page('GET', $this->uri, $params);
139+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json']);
140+
$response = $this->version->page('GET', $this->uri, $params, [], $headers);
140141

141142
return new NotificationPage($this->version, $response, $this->solution);
142143
}

src/Twilio/Rest/Api/V2010/Account/Call/PaymentContext.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function update(string $idempotencyKey, string $statusCallback, array $op
8383
$options['status'],
8484
]);
8585

86-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
86+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
8787
$payload = $this->version->update('POST', $this->uri, [], $data, $headers);
8888

8989
return new PaymentInstance(

src/Twilio/Rest/Api/V2010/Account/Call/PaymentList.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function create(string $idempotencyKey, string $statusCallback, array $op
104104
$options['validCardTypes'],
105105
]);
106106

107-
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded' ]);
107+
$headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]);
108108
$payload = $this->version->create('POST', $this->uri, [], $data, $headers);
109109

110110
return new PaymentInstance(

0 commit comments

Comments
 (0)