GET
/
monetization
/
payment_methods
/
v1
/
batch
curl --request GET \
  --url https://api.mottostreaming.com/monetization/payment_methods/v1/batch \
  --header 'Authorization: Bearer <token>'
{
  "payment_methods": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "user_id": "<string>",
      "provider": "PROVIDER_UNSPECIFIED",
      "sub_provider": "<string>",
      "type": "<string>",
      "last_four": "<string>",
      "expiration_month": 123,
      "expiration_year": 123,
      "card_brand": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

payment_method_ids
string[]
project_id
string

Response

200
application/json
OK
payment_methods
object[]