Skip to main content
DELETE
/
api
/
v2
/
payout-destination
/
{payoutDestinationId}
Delete payout destination
curl --request DELETE \
  --url https://demo.api.loopcrypto.xyz/api/v2/payout-destination/{payoutDestinationId} \
  --header 'api-key: <api-key>' \
  --header 'entity-id: <api-key>'
{
  "totalResults": 100,
  "payoutDestinations": [
    {
      "payoutDestinationId": "1234567890abcdef",
      "merchantId": "1234567890abcdef",
      "networkId": 1,
      "settlementType": "Crypto",
      "fiatSettlementAccount": {
        "provider": "Fern",
        "kycStatus": "pending",
        "kycLink": "https://www.google.com",
        "bankAccountStatus": "Pending",
        "bankAccountFormLink": "https://www.google.com"
      },
      "walletAddress": "0x1234567890abcdef",
      "isDefault": true,
      "isArchived": true,
      "dateCreated": 1716211200
    }
  ]
}

Authorizations

api-key
string
header
required
entity-id
string
header
required

Path Parameters

payoutDestinationId
string
required

The unique identifier of the payout destination to permanently remove from the system.

Response

Ok

totalResults
number
required

The total count of payout destinations matching the search criteria, regardless of page size or number.

Example:

100

payoutDestinations
object[]
required

The list of payout destinations grouped by merchant and network

I