Payment Points
This topic explains what payment points are and how to manage them.
Overview
After signing up to use Payments API, merchant needs to create a payment point.
Single business can have multiple payment points. Each payment point is a location and it has a MobilePay-assigned PaymentPointId
. Establishing multiple payment points is optional but useful for reporting and tracking sales over time. Most customer-related transactions must be to a specific payment point in the API call.
Management of payment points
Creating and editing payment points is done in MobilePay portal. The payment point name and bank account are mandatory fields. If no logo image is provided the default one will be used.
Retrieve a list of payment points
In order to get the details of payment points like PaymentPointId
, you need to use Payment Points API. The following request retrieves information about all payment points for a merchant account usable with Payments API.
curl https://api.mobilepay.dk/v1/paymentpoints \
-X GET \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'Content-Type: application/json'
{
"pageSize": 100,
"nextPageNumber": null,
"paymentPoints": [
{
"paymentPointId": "04e8a246-bc31-425b-928a-10808f8497a0",
"paymentPointName": "test",
"state": "active"
},
{
"paymentPointId": "68170df8-c6e1-4938-915b-c09abce96ae4",
"paymentPointName": "test2",
"state": "active"
}
]
}
Setting up custom transfer reference
If you have any transactions during the day, then you will receive collected money during the night. MobilePay runs a job that transfers all the money to your specified bank account. There is one transfer per payment point. When configuring payment points you can choose default transfer reference or set up custom references that would reflect in your bank account statement. Read more about transfer references..