Return the Wasp configuration
GET//v1/node/config
Authorization: Authorization
name: Authorizationtype: apiKeydescription: JWT Tokenin: header
Return the Wasp configuration
Request
Responses
- 200
- 401
Dumped configuration
- application/json
- Schema
- Example (from schema)
Schema
property name* string
{}
Unauthorized (Wrong permissions, missing token)
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
missingPermission stringrequired
{
"error": "string",
"missingPermission": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/v1/node/config' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear