- Partner
- Genel Bakış
- Buy
- Sell
- Customers
- Balances
- Card Storage
- Delivery
- Product PricesGET
- Get OrdersGET
- Get OrderGET
- Get Order (Alternative)POST
- Partner LegalPOST
- Order StatussesGET
- E-Commerce API
- Catalog
- Customers
- Customer Address
- Checkout
- Legal
- WS
- Minted PricesGET
Payment Get All Types
Testing
Testing Env
Testing Env
GET
https://api.staging.mintedconnect.com/partner/pay/resolve
Last modified:2024-07-25 12:41:58
Maintainer:Not configured
Request
Authorization
Provide your encrypted digest scheme data in the
Authorization
header when making requests to protected resources.Example:
Authorization: Digest username=guest, realm="test", nonce="2", uri="/uri", response="***"
Header Params
api-version
string
required
Example:
2
x-client-id
string
required
Default:
web
Accept-Language
string
optional
Default:
tr
Body Params application/json
object {0}
Example
{}
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://api.staging.mintedconnect.com/partner/pay/resolve' \
--header 'api-version: 2' \
--header 'api-version;' \
--header 'x-client-id;' \
--header 'Accept-Language: tr' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
data
array [object {6}]
required
id
integer
optional
name
string
optional
type
enum<string>
required
Allowed values:
cardbankcashother
slug
string
optional
description
string | null
optional
order
integer
optional
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": [
{
"id": 2,
"name": "Credit Card",
"type": "card",
"slug": "creditcard",
"description": null,
"order": 0
}
],
"success": true,
"code": 0,
"message": ""
}
Modified at 2024-07-25 12:41:58