Skip to main content
GET
/
billing
/
address
/
Manage billing address
curl --request GET \
  --url https://api-v2.missioninbox.com/billing/address/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": {
    "line1": "<string>",
    "line2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "postal_code": "<string>",
    "country": "<string>",
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Response

data
object
required