Swift3 / MongoDB Atlas / Create One Serverless Instance
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
http.digestAuth = true
http.login = "username"
http.password = "password"
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "name": "ServerlessDemo",
// "providerSettings": {
// "providerName": "SERVERLESS",
// "backingProviderName": "AWS",
// "regionName": "US_EAST_1"
// }
// }
let json = CkoJsonObject()!
json.update("name", value: "ServerlessDemo")
json.update("providerSettings.providerName", value: "SERVERLESS")
json.update("providerSettings.backingProviderName", value: "AWS")
json.update("providerSettings.regionName", value: "US_EAST_1")
http.setRequestHeader("Content-Type", value: "application/json")
var resp: CkoHttpResponse? = http.postJson3("https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/serverless", contentType: "application/json", json: json)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -X POST
--digest -u 'username:password'
-H "Content-Type: application/json"
-d '{
"name": "ServerlessDemo",
"providerSettings": {
"providerName": "SERVERLESS",
"backingProviderName": "AWS",
"regionName": "US_EAST_1"
}
}'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/serverless
Postman Collection Item JSON
{
"name": "Create One Serverless Instance",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"ServerlessDemo\",\n \"providerSettings\": {\n \"providerName\": \"SERVERLESS\",\n \"backingProviderName\": \"AWS\",\n \"regionName\": \"US_EAST_1\"\n }\n}"
},
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/serverless",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups",
"{{ProjectID}}",
"serverless"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/serverless/create-one-serverless-instance/"
},
"response": [
]
}