Integrate to PayEx Customer API 

Introduction

This api is used to create/read customers or change properties related to the customer.

1612164561442-820.png

Each resource in the API corresponds to its own route. All routes are structured according to a specific standard, explained below

The below route is an example of a route towards resource2Id, to operate on this resource you must also include the ids of its parentresources in the route.
lf-api.payex.com/ledger/{Subdomain}/v1/{LedgerNumber}/resource1/{resource1Id}/resource2/{resource2Id}

Route segmentDescription
SubdomainIn this part of the API it will be customer
LedgerNumberThe ledger identifier/number at PayEx
resource1IdIdentifier of resource1
resource2Ididentifier of resource2, subresource to resource1

Routes that occurs in examples of this documentation will use the following identifiers

ResourceIdentifier
LedgerNumberXXX
CustomerNNN (CustomerNo)

Changelog

2023-01-17
Added surpluses property to the Customer resource with planned release 2024-01-23

2023-11-27
Added new resource Surpluses & added a general 404 not-found to problems list.

Customer

The customer resource is located under ledger/customer/v1/ apiThe customer- and its sub-resources are used to create, read and modify information related to customers.

Get a specific customer

Request
GET /ledger/customer/v1/XXX/customers/NNN HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

Response
HTTP/1.1 200 OK
Content-Type: application/json

{
   "@id" : "/ledger/customer/v1/XXX/customers/9999",
   "customerNo" : "9999",
   "nationalIdentifier": {
     "regNo" : "YYYYMMDD-NNNN",
     "countryCode" : "SE"
    },
   "vatNo" : "SE101010101001",
   "legalEntity" : "consumer|business",
   "name" : "Britt-Marie Axelstopp",
   "emailAddress" : "britt@axelstopp.com",
   "protectedIdentity": false,
   "preferredLanguageCode": "SV",
   "legalStatus": "active",
   "msisdn" : "+91485918841",
   "activeConsents": [
       "Betalingsservice",
       "Avtalegiro"
    ],
   "eDIAddressInfo" : {
     "VAN": "ABCXYZ",
     "InterChangeRecipient": "Recipient_ID1",
     "BuyerId": "123465"
    },
   "legalAddress" : "/ledger/customer/v1/XXX/customers/9999/legal-address",
   "billingAddress" : "/ledger/customer/v1/XXX/customers/9999/billing-address",
   "surpluses": "/ledger/customer/v1/XXX/customers/9999/surpluses",
   "operations" :
    [
        {
           "rel" : "add-billing-address",
           "href" : "/ledger/customer/v1/XXX/customers/9999/billing-address",
           "method" : "POST"
        }
    ]
}

Get a specific customer using $expand

if the entire customer model is needed, you can expand property references to other resources, in this example to get the customer model including the addresses on a single call.

Performance is affected when expand is used as more resources are retrieved. Only use $expand if you always need the referenced properties, otherwise it should be retrevied on demand.

Request
GET /ledger/customer/v1/XXX/customers/NNN?$expand=legaladdress,billingaddress HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json
Response
HTTP/1.1 200 OK
Content-Type: application/json

{
   "@id" : "/ledger/customer/v1/XXX/customers/9999",
   "customerNo" :  "9999",
   "nationalIdentifier": {
     "regNo" : "YYYYMMDD-NNNN",
     "countryCode" : "SE"
    },
   "vatNo" : "SE101010101001",
   "legalEntity" : "consumer|business",
   "name" : "Britt-Marie Axelstopp",
   "emailAddress" : "britt@axelstopp.com",
   "protectedIdentity": false,
   "preferredLanguageCode": "SV",
   "legalStatus": "active",
   "msisdn" : "+91485918841",
   "activeConsents": [
       "Betalingsservice",
       "Avtalegiro"
    ],
   "eDIAddressInfo" : {
     "VAN": "ABCXYZ",
     "InterChangeRecipient": "Recipient_ID1",
     "BuyerId": "123456"
    },
   "legalAddress" : {
       "addressee" : "Britt-Marie Axelstopp",
       "streetAddress" : "The street 18",  
       "coAddress" : "c/o Jansson",
       "city" : "STOCKHOLM",
       "zipCode" : "15961",
       "countryCode" : "SE",
       "operations" :
            [
                {
                   "rel" : "update",
                   "href" : "/ledger/customer/v1/XXX/customers/9999/legal-address",
                   "method" : "PUT"
                },
                            {
                   "rel" : "update-legal-address-from-population-register",
                   "href" : "/ledger/customer/v1/XXX/customers/9999/legal-address",
                   "method" : "POST"
                }
            ]
    },
   "billingAddress" : {
       "addressee" : "Kalle Axelstopp",
       "streetAddress" : "Axelgatan 18",  
       "city" : "STOCKHOLM",
       "zipCode" : "16872",
       "countryCode" : "se",
       "operations" :
            [
                {
                   "rel" : "update",
                   "href" : "/ledger/customer/v1/XXX/customers/9999/billing-address",
                   "method" : "PUT"
                },
                {
                   "rel" : "delete",
                   "href" : "/ledger/customer/v1/XXX/customers/9999/billing-address",
                   "method" : "DELETE"
                }
            ]
    },
   "surpluses": "/ledger/customer/v1/XXX/customers/9999/surpluses",
   "operations" :
    [
        {
           "rel" : "add-billing-address",
           "href" : "/ledger/customer/v1/XXX/customers/9999/billing-address",
           "method" : "POST"
        }
    ]
}

Create new customer

Important to note!
  • Standard length of customerNo in Norway and Denmark is 7 characters (numeric only).
  • Only use numeric characters and not with a leading zero for customerNo in Sweden, in order to use AutoGiro (Direct Debit).
  • Dependency to legalEntity:
    • Late fee will be added instead of reminder fee or collection claim fee when legalEntity is set to "business" (if specially contracted with PayEx and configured in ledger).
    • SSN (regNo) for private individuals will not be displayed in ledger reports due to GDPR. regNO will only be displayed when legalEntity is set till "business".
    • When invoice/claim is distributed by e-mail: If legalEntity is set to "consumer" the e-mail message will only include a link to PayEx Invoice Portal where the invoice/claim is available, otherwise a copy of the invoice/claim will be added in the e-mail message as a pdf-file.
    • Finland only: Different claim processes will be used depending on "consumer" or "business".

A new customer is created by making a POST call to the API.
See below table of properties that is supported when creating a new customer. The table below also reflects what properties you can expect when retreiving a customer through a "GET" request.

PropertyRequiredComment *
customerNoYes*Normally required, exception is when the configuration on the ledger is set for payex to generate customer numbers, in that case CustomerNo must not be set in request.
nationalIdentifierNo*Normally optional, exception is when the configuration on the ledger is set for payex to generate customer numbers, in that case nationalIdentifier is required.
   nationalIdentifier.regNoYes 
   nationalIdentifier.countryCodeYes 
vatNoNo*Required if reverse tax is used
legalEntityNo 
nameYes 
preferredLanguageCodeNo 
emailAddressNo 
msisdnNo 
protectedIdentityNo 
distributionTypeNo 
eDIAddressInfoNo 
   eDIAddressInfo.vanNo*This field is required for distribution method EInvoiceB2B (EDI) to be used
   eDIAddressInfo.interChangeRecipientNo 
   eDIAddressInfo.BuyerIdYes 
legalAddressYes 
   addresseeYes 
   streetAddressNo 
   coAddressNo 
   cityYes 
   zipCodeYes 
   countryCodeYes 
billingAddressNo 
   addresseeYes 
   streetAddressNo 
   coAddressNo 
   cityYes 
   zipCodeYes 
   countryCodeYes 
Examples

Standard create customer

Request
POST /ledger/customer/v1/XXX/customers HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "customerNo" :  "9999",
   "nationalIdentifier": {
     "regNo" : "YYYYMMDD-NNNN",
     "countryCode" : "SE"
    },
   "vatNo" : "SE101010101001",
   "legalEntity" : "consumer|business",
   "name" : "Britt-Marie Axelstopp",
   "emailAddress" : "britt@axelstopp.com",
   "msisdn" : "+91485918841",
   "eDIAddressInfo" : {
     "VAN": "ABCXYZ",
     "InterChangeRecipient": "Recipient_ID1",
     "BuyerId": "123456"
    },
   "legalAddress" : {
       "addressee" : "Britt-Marie Axelstopp",
       "streetAddress" : "The street 18",  
       "coAddress" : "c/o Jansson",
       "city" : "STOCKHOLM",
       "zipCode" : "15961",
       "countryCode" : "SE"
    },
   "distributionType": "postal"
}

Response
HTTP/1.1 201 CREATED
Content-Type: application/json

{
   "@id" : "/ledger/customer/v1/XXX/customers/9999",
   "customerNo" :  " 9999"
}

Create customer with billing-address

Request
POST /ledger/customer/v1/XXX/customers HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "customerNo" :  "9999",
   "nationalIdentifier": {
     "regNo" : "YYYYMMDD-NNNN",
     "countryCode" : "SE"
    },
   "vatNo" : "SE101010101001",
   "legalEntity" : "consumer|business",
   "name" : "Britt-Marie Axelstopp",
   "emailAddress" : "britt@axelstopp.com",
   "msisdn" : "+91485918841",
   "eDIAddressInfo" : {
     "VAN": "ABCXYZ",
     "InterChangeRecipient": "Recipient_ID1",
     "BuyerId": "123456"
    },
   "legalAddress" : {
       "addressee" : "Britt-Marie Axelstopp",
       "streetAddress" : "The street 18",  
       "coAddress" : "c/o Jansson",
       "city" : "STOCKHOLM",
       "zipCode" : "15961",
       "countryCode" : "SE"
    },
   "billingAddress" : {
       "addressee" : "Kalle Axelstopp",
       "streetAddress" : "Axelgatan 18",  
       "city" : "STOCKHOLM",
       "zipCode" : "16872",
       "countryCode" : "SE"
    }
}

Response
HTTP/1.1 201 CREATED
Content-Type: application/json

{
   "@id" : "/ledger/customer/v1/XXX/customers/9999",
   "customerNo" :  " 9999"
}


Update customer

Some properties of the customer can be updated through this API. Properties will only be updated if included in the request. To delete a property, for example, the property must be included in the request and have the value set to null (see examples below). 

The following customer properties is possible to update through a patch call

Property
emailAddress
legalStatus
preferredLanguageCode
protectedIdentity
msisdn
distributionType
eDIAddressInfo
   eDIAddressInfo.van
   eDIAddressInfo.interChangeRecipient
   eDIAddressInfo.BuyerId
Examples

Update all properties

Request
PATCH /ledger/customer/v1/XXX/customers/NNN HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "emailAddress" : "britt@axelstopp.com",
   "protectedIdentity": false,
   "preferredLanguageCode": "SV",
   "legalStatus": "active",
   "msisdn" : "+91485918841",
   "eDIAddressInfo" : {
     "VAN": "ABCXYZ",
     "InterChangeRecipient": "Recipient_ID1",
     "BuyerId": "123456"
    },
   "distributionType": "postal"
}

Update only emailAddress

Request
PATCH /ledger/customer/v1/XXX/customers/NNN HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "emailAddress" : "britt@axelstopp.com"
}

Update emailAddress and delete msisdn

Request
PATCH /ledger/customer/v1/XXX/customers/NNN HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "emailAddress" : "britt@axelstopp.com",
   "msisdn" : null
}

Customer resource properties

PropertyData typeFormatDescription
@id string Uri of the specific customer
customerNostringMinLength: 1
MaxLength: 15*
numeric, 1-9 
The unique identifier of the customer
MaxLength may differ depending on configuration
KID (Norway)
nationalIdentifierobject  
   nationalIdentifier.regNostringCountry specificSweden: YYYYMMDD-NNNC
Norway: DDMMYYNNNNN
   nationalIdentifier.countryCodestringISO 3166-1 alpha-2 
vatNostringMinLength: 7
MaxLength: 17
Regex pattern:
[A-Z]{2}.*
Customer VAT registration number. Mandatory if reverse tax is used. Must conform to country specific algorithm
legalEntitystring Valid values:
"consumer"
"business"
namestringMaxlength: 72
Regex?
Full name of end-customer
emailAddressstringMaxlength: 254
Regex pattern: [^@]+@[^\.]+\..+
 
protectedIdentitybool Set to true if the customer has protected identity
Postal distribution will be handled by "Skatteverket". Only supported in Sweden
preferredLanguageCodestring 

Valid values:

  • SV
  • NO
  • DA
  • FI
  • EN
legalStatusstring 

Valid values:

  • active 
  • deceased
msisdnstringMaxlength: 15
Minlength: 5
+NNNN
 "Mobile Subscriber Integrated Services Digital Network Number", ie. Cellphone number
Countrycode is always required as the example below
+46720000000
distributionTypestring Sets distribution type. Allowed values are:
  • postal 
  • noDistribution 
activeConsentsobject List of strings with possible values:
  • Autogiro

  • Avtalegiro

  • Betalingsservice

  • RecurringCard

  • RecurringInvoiceToken

  • EInvoice

  • Kivra

  • EBoks

eDIAddressInfoobject EDI addressing info
   eDIAddressInfo.vanstringMaxlength: 255

Buyer VAN identifier (OperatorId)

   eDIAddressInfo.interChangeRecipientstringMaxlength: 13Routing address. EAN
   eDIAddressInfo.BuyerIdstringMaxlength: 13NAD_BY/Buyerparty. EAN/Corporate identity number
legalAddressuri reference to the customers legal address
billingAddressuri reference to the customer billing address
surplusesuri reference to the customer surpluses

Operations

Depending on the current permissions the following operations is supported on the customer resource

add-billing-address

Method: POST
This operation will be available if no billing-address exists on the customer, see billing-address resource for more details


Surpluses

A surplus is the remaining value from a payment that was greater than the current debt, also referred as an 'overpayment'. Each instance of an overpayment will create a new surplus. A surplus will often have a connection to an account or invoice based of where the payment was placed but surpluses without connection to an account or invoice also exist. Surpluses can be used to settle upcoming debt or be disbursed. 

Get specified Surplus information

Request
GET /ledger/customer/v1/XXX/customers/NNN/surpluses/YYY HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json
Response
HTTP/1.1 200 OK
Content-Type: application/json

{
  "surplusId": "YYY",
  "balance": 10.00,
  "currency": "SEK",
  "date": "2023-01-01T00:00:00",
  "status": "open",
  "invoice": "/ledger/invoice/v1/XXX/invoices/AAA",
  "account": "/ledger/account/v1/XXX/accounts/BBB",
  "operations": [],
  "@id": "/ledger/customer/v1/XXX/customers/NNN/surpluses/YYY"
        

Get list of Surpluses Information

Request
GET /ledger/customer/v1/XXX/customers/NNN/surpluses HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json
Response
HTTP/1.1 200 OK
Content-Type: application/json

{
   "items": [
        {
         "surplusId": "123",
         "balance": 10.00,
         "currency": "SEK",
         "date": "2023-01-01T00:00:00",
         "status": "open",
         "invoice": "/ledger/invoice/v1/XXX/invoices/AAA",
         "operations": [],
         "@id": "/ledger/customer/v1/XXX/customers/NNN/surpluses/123"
       
        },
        {
         "surplusId": "456",
         "balance": 20.00,
         "currency": "SEK",
         "date": "2023-01-02T00:00:00",
         "status": "pending-disbursement",
         "account": "/ledger/account/v1/XXX/accounts/BBB",
         "operations": [],
         "@id": "/ledger/customer/v1/XXX/customers/NNN/surpluses/456"
       
        },
        {
         "surplusId": "789",
         "balance": 30.00,
         "currency": "SEK",
         "date": "2023-01-03T00:00:00",
         "status": "pending-regulate",
         "invoice": "/ledger/invoice/v1/XXX/invoices/AAA",
         "operations": [],
         "@id": "/ledger/customer/v1/XXX/customers/NNN/surpluses/789"
       
        }
    ],
   "navigation": {
       "@id": "/ledger/customer/v1/XXX/customers/NNN/surpluses",
       "first": "/ledger/customer/v1/XXX/customers/NNN/surpluses?skip=0",
       "previous": "/ledger/customer/v1/XXX/customers/NNN/surpluses?skip=0"
    }
}

Surpluses resource properties

PropertyData typeFormatDescription
@id stringMaxlength: Uri of the specific surplus
surplusIdstringMaxlength: 50Value is not considered case sensitive 
balancestring Amount value for the surplus, always a positive value
currencystringISO 4217 
datedateyyyy-MM-ddTHH:mm:ssSurplus creation date
statusstring Expected statuses: open | pending-disbursement | pending-regulate
After a surplus has been depleted it will no longer be returned from the API 
invoicestring Relative Uri to the connected source of the surplus through the Invoice API. A surplus can have a connection to an account or invoice but not both.
accountstring Relative Uri to the connected source of the surplus through the Account API. A surplus can have a connection to an account or invoice but not both.

Active-Disbursement-Orders

This shows if current surplus has been ordered to disburse the surplus to the end customer. 

Get active disbursement orders

Request
GET /ledger/customer/v1/XXX/customers/NNN/surpluses/YYY/active-disbursement-orders HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json
Response
HTTP/1.1 200 OK
Content-Type: application/json

{
   "items": [
        {
           "operations": [],
           "swedishBankAccount": {
               "accountNo": "3300-1010101010",
               "accountType": "BKSE"
            }
        }
    ],
   "navigation": {
       "@id": "/ledger/customer/v1/XXX/customers/NNN/surpluses/YYY/active-disbursement-orders"
    }
}

Operations

Depending on the current permissions the following operations is supported on the surplus resource

add-disbursement-orders

Method: POST
This operation will be available if agreed with payex.

request properties

PropertyData typeRequiredDescription
norwegianBankAccountobjectNo* 
   accountNostringYes 
swedishBankAccountobjectNo* 
   clearingNostringYes 
   accountNostringYes 
internationalobjectNo* 
   ibanstringYes 
   bicstringYes 
swedishSusobjectNo* 
nationalIdentifierobjectYes 
      regNostringYes 
      countryCodestringYes 
addressobjectYes 
      addresseestringYes 
      streetAddressstringNo 
      coAddressstringNo 
      citystringYes 
      zipCodestringYes 
      countryCodestringYes 
    

* One and only one of the specified objects can be set at each request 

Examples

Create disbursement with swedish bank account

Request
POST /ledger/customer/v1/XXX/customers/NNN/surpluses/YYY/active-disbursement-orders HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "SwedishBankAccount" : {
       "AccountNo":"944-1049000",
       "AccountType":"BGSE"
    }
}

Create a disbursement order with a norwegian bankaccount

Request
POST /ledger/customer/v1/XXX/customers/NNN/surpluses/YYY/active-disbursement-orders HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "norwegianBankAccount" : {
     "accountNo" : "1234"
    }
}

Create a disbursement order with an international bankaccount

Request
POST /ledger/customer/v1/XXX/customers/NNN/surpluses/YYY/active-disbursement-orders HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "international" : {
       "iban" : "123456",
       "bic" : "SWED..."
    }
}

Create disbursement order using "Swedbanks lön- och utbetalningssystem (SUS)"

Request
POST /ledger/customer/v1/XXX/customers/NNN/surpluses/YYY/active-disbursement-orders HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "swedishSus" : {
       "nationalIdentifier": {
           "regNo" : "YYYYMMDD-NNNN",
           "countryCode" : "SE"
        },
       "address" : {
           "addressee" : "Kalle Axelstopp",
           "streetAddress" : "Axelgatan 18",  
           "coAddress" : null,  
           "city" : "STOCKHOLM",
           "zipCode" : "16872",
           "countryCode" : "se",
        }
    }
}

 

Legal-address

The legal address is where claims is normally sent to. It is required for a customer to have a legal address registered

Get the legal address of the customer

Request
GET /ledger/customer/v1/XXX/customers/NNN/legal-address HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json
Response
HTTP/1.1 200 OK
Content-Type: application/json

{
   "addressee" : "Britt-Marie Axelstopp",
   "streetAddress" : "The street 18",  
   "coAddress" : "c/o Jansson",
   "city" : "STOCKHOLM",
   "zipCode" : "15961",
   "countryCode" : "SE",
   "operations" :
        [
            {
               "rel" : "update",
               "href" : "/ledger/customer/v1/XXX/customers/9999/legal-address",
               "method" : "PUT"
            },
                        {
               "rel" : "update-legal-address-from-population-register",
               "href" : "/ledger/customer/v1/XXX/customers/9999/legal-address/update-legal-address-from-population-register",
               "method" : "POST"
            }
        ]
}

Operations

Depending on the current permissions the following operations is supported on the legal address resource

Update (replace)

Method: PUT
Use this operation to update the address, this "PUT" operation will replace the existing billing-address with the address specified in the request body.

PropertyRequired
addresseeYes
streetAddressNo
coAddressNo
cityYes
zipCodeYes
countryCodeYes

Example 

Request
PUT /ledger/customer/v1/XXX/customers/NNN/legal-address HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
       "addressee" : "Kalle Axelstopp",
       "streetAddress" : "Axelgatan 18",  
       "city" : "STOCKHOLM",
       "zipCode" : "16872",
       "countryCode" : "SE"
}

Method: POST
Execution of this operation will result in an attempt to retrieve (and replace) the customer's legal address from the population registry.

Access to this operation is not normally granted, unless otherwise agreed.

Request
POST /ledger/customer/v1/XXX/customers/NNN/legal-address/update-legal-address-from-population-register HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
}

Legal-address resource properties

PropertyData typeFormatDescription
addresseestringMaxlength: 72Fullname
streetAddressstringMaxlength: 72 
coAddressstringMaxlength: 72Care of (C/O) name. This is optional.
citystringMaxlength: 27 
zipCodestringMaxlength: 9ZipCode without whitespaces
countryCodestringISO 3166-1 alpha-2 

Billing-address

The billing address is where invoices/bills/letters etc. is normally sent to.This address is optional

Get the billing address of the customer

Request
GET /ledger/customer/v1/XXX/customers/NNN/billing-address HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json
Response
HTTP/1.1 200 OK
Content-Type: application/json

{
   "addressee" : "Kalle Axelstopp",
   "streetAddress" : "Axelgatan 18",  
   "coAddress" : "c/o Jansson",
   "city" : "STOCKHOLM",
   "zipCode" : "16872",
   "countryCode" : "SE",
   "operations" :
        [
            {
               "rel" : "update",
               "href" : "/ledger/customer/v1/XXX/customers/9999/billing-address",
               "method" : "PUT"
            },
            {
               "rel" : "delete",
               "href" : "/ledger/customer/v1/XXX/customers/9999/billing-address",
               "method" : "DELETE"
            }
        ]
}

Add a billing-address

PropertyRequired
addresseeYes
streetAddressNo
coAddressNo
cityYes
zipCodeYes
countryCodeYes
Request
POST /ledger/customer/v1/XXX/customers/NNN/billing-address HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
       "addressee" : "Kalle Axelstopp",
       "streetAddress" : "Axelgatan 18",  
       "city" : "STOCKHOLM",
       "zipCode" : "16872",
       "countryCode" : "SE"
}

Operations

Depending on the current permissions the following operations is supported on the billing address resource

Update (replace)

Method: PUT
Use this operation to update the address, the "PUT" body of the request should be accoring to the properties of the resource.

PropertyRequired
addresseeYes
streetAddressNo
coAddressNo
cityYes
zipCodeYes
countryCodeYes
Request
PUT /ledger/customer/v1/XXX/customers/NNN/billing-address HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
       "addressee" : "Kalle Axelstopp",
       "streetAddress" : "Axelgatan 18",  
       "city" : "STOCKHOLM",
       "zipCode" : "16872",
       "countryCode" : "SE"
}
Delete

Method: DELETE
Use this operation to delete the billing address.

Request
DELETE /ledger/customer/v1/XXX/customers/NNN/billing-address HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
}

Billing-address resource properties

PropertyData typeFormatDescription
addresseestringMaxlength: 72Fullname
streetAddressstringMaxlength: 72 
coAddressstringMaxlength: 72Care of (C/O) name. This is optional.
citystringMaxlength: 27 
zipCodestringMaxlength: 9ZipCode without whitespaces
countryCodestringISO 3166-1 alpha-2 

Find customer

The find customer resource is located under ledger/customer/v1/ apiIt is used to find customer with nationalIdentifier. 

PropertyRequired
nationalIdentifier.regNoYes
nationalIdentifier.countryCodeYes
Request
POST /ledger/customer/v1/XXX/find-customer HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "nationalIdentifier": {
     "regNo" : "YYYYMMDD-NNNN",
     "countryCode" : "SE"
    }
}
Response
HTTP/1.1 200 OK
Content-Type: application/json

{
   "@id" : "/ledger/customer/v1/XXX/customers/9999",
   "customerNo" :  " 9999"
}

Find customer resource properties

PropertyData typeFormatDescription
@id stringMaxlength: Uri of the specific customer
customerNostringMaxlength: 15 
nationalIdentifier.regNostringCountry specificSweden: YYYYMMDD-NNNC
Norway: DDMMYYNNNNN
nationalIdentifier.countryCodestringISO 3166-1 alpha-2 

Generate customer

The generate consumer customer by reg no resource is located under ledger/customer/v1/ apiIt is used to genarate a customer with a nationalIdentifier. It will retreive an legal address from the population register and create a consumer customer.

Access to this operation is not normally granted, unless otherwise agreed.

PropertyRequired
customerNoNo
nationalIdentifier.regNoYes
nationalIdentifier.countryCodeYes
emailAddressNo
msisdnNo
Request
POST /ledger/customer/v1/XXX/generate-consumer-customer-by-reg-no HTTP/1.1
Host: -
Authorization: Bearer <Token>
Content-Type: application/json

{
   "nationalIdentifier": {
     "regNo" : "YYYYMMDD-NNNN",
     "countryCode" : "SE"
    },
   "emailAddress" : "britt@axelstopp.com",
   "msisdn" : "+91485918841",
   "customerNo" :  "9999"
}
Response
HTTP/1.1 201 CREATED
Content-Type: application/json

{
   "@id" : "/ledger/customer/v1/XXX/customers/9999",
   "customerNo" :  " 9999"
}

Generate customer resource properties

PropertyData typeFormatDescription
@id stringMaxlength: Uri of the specific customer
customerNostringMaxlength: 15 
nationalIdentifier.regNostringCountry specificSweden: YYYYMMDD-NNNC
Norway: DDMMYYNNNNN
nationalIdentifier.countryCodestringISO 3166-1 alpha-2 
emailAddressstringMaxlength: 254
Regex pattern: [^@]+@[^\.]+\..+
 
msisdnstringMaxlength: 15 "Mobile Subscriber Integrated Services Digital Network Number", ie. Cellphone number
+46720000000

Problems

All errors from the api are returned in the form of "problems" (response body), except for the http status code itself.
The problem object contain more detailed info on what the error is. The "type" property can be used to programmatically interpret the error as it contains a code definition of the problem.
Other properties can be useful for logging and subsequent troubleshooting. Some problems are extended with additional parameters so it may be a good idea to log response body as raw data to include these.

Problems of type validation does contain an additional list ("Problems") that describes exactly which parameter that failed the validation

Example

Response
HTTP/1.1 400 Error
Content-Type: application/problem+json

{
  "Type" : "ledger/{domain}/v1/problems/validation",
  "Title" : "A validation error occurred",
  "Status" : 400,
  "Instance" : "215d4206-ca35-4f43-85ad-169c8f6d4ec1",
  "Detail" : "A validation error occurred. Please fix the problems mentioned in the 'problems' property below.",
  "Problems" :
      {
        "amount" : [
           "Expected value between [0,01]-[79228162514264337593543950335] actual [0]"
         ]
      }
}

Problem types

Note, each problem typecode is preceded by "ledger/customer/v1/problems/" in this API, e.g. the error "validation" in the table below will appear as typecode "ledger/customer/v1/problems/validation".

Problem type (code)HttpstatusDescription
validation400occurs if any of the inputvalidation fails, it is described in the problem which parameter that failed the validation
forbidden403occurs if access to method is not allowed.
not-found404specified resource not found
customer-not-found404specified customer number does not exists
legal-address-does-not-exists404legal address does not exists for the specified customer
billing-address-does-not-exists404billing address does not exists for the specified customer
Created by David Persson on 2024/01/10 12:28