POST
/
Import
/
customersForm
/
{entry}
curl --request POST \
  --url https://api-sandbox.payabli.com/api/Import/customersForm/{entry} \
  --header 'Content-Type: multipart/form-data' \
  --header 'requestToken: <api-key>'
{
  "isSuccess": true,
  "responseText": "Success",
  "responseCode": 1,
  "responseData": {
    "added": 26,
    "rejected": 2,
    "errors": [
      {
        "line": 1,
        "error": "same username exists already"
      },
      {
        "line": 2,
        "error": "same username exists already"
      }
    ]
  },
  "pageIdentifier": "null"
}

Authorizations

requestToken
string
header
required

Most endpoints require an organization token. Some endpoints require an application token, and those endpoints are noted.

Path Parameters

entry
string
required

The paypoint's entrypoint identifier. Learn more

Example:

"8cfec329267"

Query Parameters

replaceExisting
integer
default:0

Flag indicating to replace existing customer with a new record. Possible values: 0 (do not replace), 1 (replace). Default is 0

Required range: x <= 1

Body

multipart/form-data

Response

200 - application/json

Success

The response is of type object.