API Basics
Pay In Endpoints
- MoneyIn
- Subscription
- TokenStorage
- Invoice
- LineItem
- PaymentLink
- PaymentMethodDomain
- HostedPaymentPages
- Cloud
- Wallet: Apple Pay
Pay Out Endpoints
- MoneyOut
- Bill
Pay Ops Endpoints
- Templates
- Boarding
- Chargebacks and ACH Returns
- Entities
- Notification
- Query
- Statistic
- Export
- Import
Object Models
- Object Model References
Add User to Organization
POST
/
User
Copy
curl --request POST \
--url https://api-sandbox.payabli.com/api/User \
--header 'Content-Type: application/json' \
--header 'requestToken: <api-key>' \
--data '{
"email": "example@email.com",
"phone": "5555555555",
"name": "Sean Smith",
"pwd": "<string>",
"scope": [
{
"orgType": 0,
"orgId": 123
}
],
"access": [
{
"roleLabel": "customers",
"roleValue": true
}
],
"usrStatus": 1,
"timeZone": -5,
"language": "en",
"mfaData": {
"mfa": true,
"mfaMode": 0
},
"additionalData": {
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
}'
Copy
{
"responseText": "Success",
"isSuccess": true,
"responseData": null
}
Authorizations
Most endpoints require an organization
token. Some endpoints require an application
token, and those endpoints are noted.
Body
UserData object to add
The body is of type object
.
Response
200 - application/json
Success
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://api-sandbox.payabli.com/api/User \
--header 'Content-Type: application/json' \
--header 'requestToken: <api-key>' \
--data '{
"email": "example@email.com",
"phone": "5555555555",
"name": "Sean Smith",
"pwd": "<string>",
"scope": [
{
"orgType": 0,
"orgId": 123
}
],
"access": [
{
"roleLabel": "customers",
"roleValue": true
}
],
"usrStatus": 1,
"timeZone": -5,
"language": "en",
"mfaData": {
"mfa": true,
"mfaMode": 0
},
"additionalData": {
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
}'
Copy
{
"responseText": "Success",
"isSuccess": true,
"responseData": null
}
Assistant
Responses are generated using AI and may contain mistakes.