Skip to main content
PUT
/
customers
/
{id}
cURL
curl --request PUT \
  --url https://apay.yonobi.io/customers/{id} \
  --header 'Content-Type: application/json-patch+json' \
  --data '
{
  "name": "<string>",
  "email": "[email protected]",
  "id": 123,
  "ownerId": 123,
  "userId": 123,
  "ownerName": "<string>",
  "address": "<string>",
  "phone": "<string>",
  "memberId": "<string>",
  "hasPaymentRequests": true,
  "totalDeposits": 123,
  "createDate": "2023-11-07T05:31:56Z"
}
'
{}

Path Parameters

id
integer<int64>
required

Body

name
string
required
Maximum string length: 100
email
string<email>
required
Maximum string length: 100
id
integer<int64>
ownerId
integer<int64>
userId
integer<int64> | null
ownerName
string | null
address
string | null
Maximum string length: 255
phone
string | null
Maximum string length: 20
memberId
string | null
Maximum string length: 50
hasPaymentRequests
boolean | null
totalDeposits
number<double> | null
createDate
string<date-time>

Response

OK