- 🐶 Walk through Apidog
- Sample APIs
- Auth
- User
SIGN UP BUSINESS USER
POST
https://api.cardtonic.com/v1/auth/signup/business
Request
Header Params
X-Tonic-Env
string
required
Example:
development
Body Params application/json
name
string
required
password
string
required
phoneNumber
string
required
username
string
required
email
string
required
country
string
required
business
object
required
name
string
required
website
string
required
description
string
required
Example
{
"name": "Akinbiyi Fatunmbi",
"password": "Computer7,",
"phoneNumber": "+2347038784406",
"username": "akinpiers",
"email": "akinbiyi@thetonictech.com",
"country": "Nigeria",
"business": {
"name": "Akinpiers's Business",
"website": "https://thetonictech.com",
"description": "About this business"
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.cardtonic.com/v1/auth/signup/business' \
--header 'X-Tonic-Env: development' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Akinbiyi Fatunmbi",
"password": "Computer7,",
"phoneNumber": "+2347038784406",
"username": "akinpiers",
"email": "akinbiyi@thetonictech.com",
"country": "Nigeria",
"business": {
"name": "Akinpiers'\''s Business",
"website": "https://thetonictech.com",
"description": "About this business"
}
}'
Responses
🟢201201 SIGN UP BUSINESS USER
application/json
Body
message
string
required
success
boolean
required
data
object
required
name
string
required
email
string
required
phoneNumber
string
required
username
string
required
business
object
required
meta
object
required
settings
object
required
Example
{
"message": "data fetched",
"success": true,
"data": {
"name": "Michael George",
"email": "george@thetonictech.com",
"phoneNumber": "2348000000000",
"username": "michaelgeorge_1730672802298",
"business": {
"name": "Mikkycody's Business",
"website": "https://thetonictech.com",
"description": "About this business"
}
},
"meta": {
"settings": {}
}
}
🟠422422 SIGN UP BUSINESS USER
Modified at 2024-11-17 09:59:00