Apps
Create an App
Create an app in your organization
POST
/
v2
/
apps
Authorization
Body
curl --request POST \
--url https://api.senddotssandbox.com/api/v2/apps \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json'
[
{
"name": "string"
}
]
Authorizations
Authorizationheaderrequired
string
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Body
application/json ยท object
The body is of type object
.
Response
201 - application/json
namerequired
string
curl --request POST \
--url https://api.senddotssandbox.com/api/v2/apps \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json'
[
{
"name": "string"
}
]