Skip to main content
PUT
/
billing
/
address
/
Manage billing address
curl --request PUT \
  --url https://api-v2.missioninbox.com/billing/address/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "line1": "<string>",
  "line2": "<string>",
  "city": "<string>",
  "state": "<string>",
  "postal_code": "<string>",
  "country": "<string>",
  "name": "<string>"
}'
{
  "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.

Body

line1
string
required

Street address line 1 (required)

city
string
required

City (required)

state
string
required

State/Province (required)

postal_code
string
required

ZIP/Postal code (required)

country
string
required

2-letter country code (required)

line2
string

Street address line 2 (optional)

name
string

Full name (optional)

Response

data
object
required