Change customer Info
Production
https://api.mediaconnect.no/capi
Production
https://api.mediaconnect.no/capi
POST
/v1/customer/info
Customer
lastName
or companyName
. If request is null or empty, then lastName
will be set to “-”. In this API we may set an email address that shall be used for sending email invoice.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.mediaconnect.no/capi/v1/customer/info' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": {
"firstName": "Ola",
"middleName": "Solstrand",
"lastName": "Nordmann",
"companyName": "Company International Ltd",
"departmentName": "Support"
},
"phoneNumbers": [
{
"phoneNumber": "+4712345678",
"phoneNumberType": "personal"
},
{
"phoneNumber": "+4723339100",
"phoneNumberType": "company"
}
],
"emails": [
"ola.nordmann@hotmail.no",
"ola.nordmann@company.com"
],
"invoiceEmailAddress": "ola.nordmann@hotmail.no"
}'
Response Response Example
200 - Success
{
"success": true
}
Request
Body Params application/json