Skip to main content
PATCH
/
account
/
billing-details
Update billing details
curl --request PATCH \
  --url https://api.veryfront.com/account/billing-details \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "address": {
    "line1": "<string>",
    "line2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "postal_code": "<string>",
    "country": "<string>"
  }
}
'
{
  "name": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "address": {
    "line1": "<string>",
    "line2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "postal_code": "<string>",
    "country": "<string>"
  },
  "tax_ids": [
    {
      "id": "<string>",
      "type": "<string>",
      "value": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Body

application/json
name
string | null
email
string<email> | null
phone
string | null
address
object

Response

Updated billing details

name
string | null
required
email
string<email> | null
required
phone
string | null
required
address
object
required
tax_ids
object[]
required