curl --request POST \
  --url https://api.dots.dev/api/v2/payment-methods/{payment_method_id}/detach \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "customer_id": "<string>"
}'
{
  "id": "<string>",
  "platform": "ach",
  "description": "<string>",
  "mask": "<string>",
  "email": "<string>",
  "phone_number": "<string>",
  "cash_tag": "<string>",
  "country": "<string>",
  "currency": "<string>"
}

Authorizations

Authorization
string
headerrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

payment_method_id
string
required

ID of the payment method.

Body

application/json
customer_id
string

ID of the payment customer to detach the payment method from.

Response

200 - application/json
id
string

ID of the payment-method.

platform
enum<string>
required
Available options:
ach,
paypal,
venmo,
cash_app,
intl_transfer
description
string
mask
string
email
string
phone_number
string
cash_tag
string
country
string
currency
string