curl --request POST \
--url https://api.dots.dev/api/v2/apps \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"metadata": {}
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"status": "created",
"metrics": {
"wallet_balance": "<string>",
"money_out": "<string>",
"connected_users": 123
},
"metadata": "<string>"
}
Create an app in your organization
curl --request POST \
--url https://api.dots.dev/api/v2/apps \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"metadata": {}
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"status": "created",
"metrics": {
"wallet_balance": "<string>",
"money_out": "<string>",
"connected_users": 123
},
"metadata": "<string>"
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Created
The response is of type object
.
Was this page helpful?