Skip to main content
GET
/
vendor
/
{vendorId}
Get a vendor by ID
curl --request GET \
  --url https://rest.staging.nickel.com/vendor/{vendorId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "emails": [
    "<string>"
  ],
  "address": "<string>",
  "city": "<string>",
  "state": "<string>",
  "zip": "<string>",
  "type": "<string>",
  "vendorPayoutMethods": [
    {
      "id": "<string>",
      "type": "<string>",
      "routingNumber": "<string>",
      "accountType": "<string>",
      "bankName": "<string>",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "country": "<string>",
      "swiftCode": "<string>",
      "iban": "<string>",
      "countryCode": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

vendorId
string
required

ID of the vendor

Response

Successful operation

id
string
name
string | null
emails
string[]
address
string | null
city
string | null
state
string | null
zip
string | null
type
string | null
vendorPayoutMethods
object[]