- API Introduction
- Error Code
- Payment Intents
- Charges
- Payment Methods
- Refunds
- Webhooks
- Events
- Files
- Disputes
- Payouts
- Balance
- Products
- Prices
- Payment Links
- Checkout
- Customers
- Setup Intents
- Invoices
- Invoice Items
- Invoice Line Item
- Subscriptions
- Subscription Items
- Issuing
- Authorizations
- Cardholders
- Cards
- Transactions
- Coupons
- Promotion Code
- Accounts
List all authorization
Developing
GET
/v1/issuing/authorizations
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string {{Username}}:{{Password}}Example:
Authorization: Basic YWRtaW46MTIzNDU2
Query Params
card
string
optional
cardholder
string
optional
status
string
optional
created [gt]
string
optional
created [gte]
string
optional
created [lt]
string
optional
created [lte]
string
optional
ending_before
string
optional
starting_after
string
optional
limit
string
optional
Header Params
Accept
string
required
Default:
application/json
Content-Type
string
required
Default:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://apitest.wooshpay.com/v1/issuing/authorizations?members&reference&Type&_postman_listIndexKey=key&_postman_listAllowsMultipleValues'
Responses
🟢200OK
application/json
Body
id
string
optional
amount
integer
optional
approved
boolean
optional
card
object
optional
id
string
optional
cancellation_reason
enum<string>
optional
Allowed values:
loststolendesign_rejected
currency
string
optional
type
enum<string>
optional
Allowed value:
virtual
cardholder
object
optional
exp_month
integer
optional
exp_year
integer
optional
first6
string
optional
last4
string
optional
metadata
string
optional
status
enum<string>
optional
Allowed values:
activeinactivecanceled
object
string
optional
brand
string
optional
created
string
optional
cvc
string | null
optional
livemode
boolean
optional
number
string | null
optional
spending_controls
object
optional
cardholder
string | null
optional
currency
string
optional
metadata
object
optional
status
enum<string>
optional
Allowed values:
closedpendingreversed
object
string
optional
created
integer
optional
livemode
boolean
optional
merchant_currency
string
required
merchant_amount
string
required
transactions
array [object {16}]
optional
id
string
optional
object
string
optional
amount
integer
optional
authorization
string
optional
card
string
optional
cardholder
string
optional
currency
string
optional
metadata
object
optional
type
enum<string>
optional
Allowed values:
capturerefund
created
string
optional
dispute
string
optional
livemode
boolean
optional
merchant_amount
integer
optional
merchant_currency
string
optional
merchant_data
object
optional
network_data
object
optional
merchant_data
object
optional
category
string
optional
category_code
string
optional
city
string
optional
country
string
optional
name
string
optional
network_id
string
optional
postal_code
string
optional
state
string
optional
terminal_id
string
optional
url
string
optional
network_data
object | null
optional
transaction_id
string
required
fail_reason
string
optional
Example
{
"id": "string",
"amount": 0,
"approved": true,
"card": {
"id": "string",
"cancellation_reason": "lost",
"currency": "string",
"type": "virtual",
"cardholder": {
"id": "string",
"object": "string",
"billing": {
"address": {
"city": "string",
"country": "string",
"line1": "string",
"line2": "string",
"postal_code": "string",
"state": "string"
}
},
"name": "string",
"email": "string",
"phone_number": "string",
"metadata": [
{}
],
"company": {
"tax_id_provided": true
},
"created": 0,
"individual": {
"card_issuing": {
"user_terms_acceptance": {
"date": 0,
"ip": "string",
"user_agent": "string"
}
},
"dob": {
"day": 0,
"month": 0,
"year": 0
},
"first_name": "string",
"last_name": "string",
"verification": {
"document": {
"back": "string",
"front": "string"
}
}
},
"livemode": true,
"spending_controls": {
"spending_limits": {
"amount": 0,
"interval": "per_authorization"
},
"spending_limits_currency": "string"
},
"status": "active",
"type": "individual"
},
"exp_month": 0,
"exp_year": 0,
"first6": "string",
"last4": "string",
"metadata": "string",
"status": "active",
"object": "string",
"brand": "string",
"created": "string",
"cvc": "string",
"livemode": true,
"number": "string",
"spending_controls": {
"spending_limits": [
{
"amount": "string",
"interval": "all_time"
}
],
"spending_limits_currency": "string"
}
},
"cardholder": "string",
"currency": "string",
"metadata": {},
"status": "closed",
"object": "string",
"created": 0,
"livemode": true,
"merchant_currency": "string",
"merchant_amount": "string",
"transactions": [
{
"id": "string",
"object": "string",
"amount": 0,
"authorization": "string",
"card": "string",
"cardholder": "string",
"currency": "string",
"metadata": {},
"type": "capture",
"created": "string",
"dispute": "string",
"livemode": true,
"merchant_amount": 0,
"merchant_currency": "string",
"merchant_data": {
"category": "string",
"category_code": "string",
"city": "string",
"country": "string",
"name": "string",
"network_id": "string",
"postal_code": "string",
"state": "string",
"terminal_id": "string",
"url": "string"
},
"network_data": {
"authorization_code": "string",
"processing_date": "string",
"transaction_id": "string"
}
}
],
"merchant_data": {
"category": "string",
"category_code": "string",
"city": "string",
"country": "string",
"name": "string",
"network_id": "string",
"postal_code": "string",
"state": "string",
"terminal_id": "string",
"url": "string"
},
"network_data": {
"transaction_id": "string"
},
"fail_reason": "string"
}
Modified at 2024-08-23 12:51:09