Skip to main content
PATCH
/
client
Update client Info inDevelopnent
curl --request PATCH \
  --url https://client-api.dev.finhost.io/client \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone": "+38090000000"
}
'
{
  "country": "USA",
  "postCode": "23453",
  "town": "Boston",
  "street": "Bandery 17",
  "streetLine2": "sub street",
  "state": "DE"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
phone
string
Example:

"+38090000000"

Response

200 - application/json

200 response

country
string
required

Client country

Example:

"USA"

postCode
string
required

Client post code

Example:

"23453"

town
string
required

Client town

Example:

"Boston"

street
string
required

Client street

Example:

"Bandery 17"

streetLine2
string

Client sub street

Example:

"sub street"

state
string

Client street

Example:

"DE"