> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.kollo.ng/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.kollo.ng/_mcp/server.

# Create Kollo

POST https://kollo
Content-Type: application/json

Reference: https://docs.kollo.ng/kollo-ap-is/kollo/create-kollo

## Authentication

- `Authorization` header (bearer token, required)

## Request

### Body (application/json)

- `type` (string, required)
- `name` (string, required)
- `description` (string, required)
- `contribution_amount` (integer, required)
- `frequency` (string, required)

## Response

### 200

OK

- `message` (string, required)
- `body` (object, required)
  - `kollo` (object, required)
    - `name` (string, required)
    - `description` (string, required)
    - `type` (string, required)
    - `contributionAmount` (integer, required)
    - `targetDate` (date, required)
    - `createdBy` (string, required)
    - `kolloId` (string, required)
    - `status` (string, required)
    - `createdAt` (datetime, required)
    - `updatedAt` (datetime, required)
    - `account` (object, required)
      - `accountId` (string, required)
      - `accountType` (string, required)
      - `balance` (string, required)
      - `currency` (string, required)
      - `status` (string, required)
      - `details` (object, required)
      - `customerId` (string, required)
      - `kolloId` (string, required)
      - `createdAt` (datetime, required)
      - `updatedAt` (datetime, required)
      - `groupId` (any, optional, nullable)
      - `targetGroupId` (any, optional, nullable)
    - `progressPercentage` (integer, required)

## Examples

### Kollo SureLock

**Request**

```json
{
  "type": "flexible",
  "name": "Sunny days",
  "description": "Buy myself another new car",
  "contribution_amount": 8900,
  "frequency": "monthly"
}
```

**Response**

```json
{
  "message": "New Car Kollo created successfully",
  "body": {
    "kollo": {
      "name": "New Car",
      "description": "Buy myself a new car",
      "type": "fixed",
      "contributionAmount": 127500,
      "targetDate": "2025-07-09",
      "createdBy": "cad93347-d28d-49bc-8960-1c326ad9832e",
      "kolloId": "167681bd-028a-4759-9aa9-bae1902f6538",
      "status": "active",
      "createdAt": "2025-06-19T23:17:01Z",
      "updatedAt": "2025-06-19T23:17:01Z",
      "account": {
        "accountId": "bcea1b7d-a95a-4df1-bb1e-e06dad6feeb7",
        "accountType": "kollo",
        "balance": "127500",
        "currency": "NGN",
        "status": "verified",
        "details": {},
        "customerId": "cad93347-d28d-49bc-8960-1c326ad9832e",
        "kolloId": "167681bd-028a-4759-9aa9-bae1902f6538",
        "createdAt": "2025-06-19T23:17:01Z",
        "updatedAt": "2025-06-19T23:17:01Z"
      },
      "progressPercentage": 100
    }
  }
}
```

**SDK Code**

```python Kollo SureLock
import requests

url = "https://https/kollo"

payload = {
    "type": "flexible",
    "name": "Sunny days",
    "description": "Buy myself another new car",
    "contribution_amount": 8900,
    "frequency": "monthly"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript Kollo SureLock
const url = 'https://https/kollo';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"type":"flexible","name":"Sunny days","description":"Buy myself another new car","contribution_amount":8900,"frequency":"monthly"}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Kollo SureLock
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://https/kollo"

	payload := strings.NewReader("{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Kollo SureLock
require 'uri'
require 'net/http'

url = URI("https://https/kollo")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}"

response = http.request(request)
puts response.read_body
```

```java Kollo SureLock
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/kollo")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}")
  .asString();
```

```php Kollo SureLock
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/kollo', [
  'body' => '{
  "type": "flexible",
  "name": "Sunny days",
  "description": "Buy myself another new car",
  "contribution_amount": 8900,
  "frequency": "monthly"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp Kollo SureLock
using RestSharp;

var client = new RestClient("https://https/kollo");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Kollo SureLock
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "type": "flexible",
  "name": "Sunny days",
  "description": "Buy myself another new car",
  "contribution_amount": 8900,
  "frequency": "monthly"
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://https/kollo")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```

### Kollo GoGet

**Request**

```json
{
  "type": "flexible",
  "name": "Sunny days",
  "description": "Buy myself another new car",
  "contribution_amount": 8900,
  "frequency": "monthly"
}
```

**Response**

```json
{
  "message": "New whip Kollo created successfully",
  "body": {
    "kollo": {
      "name": "New whip",
      "description": "Buy myself a new car",
      "type": "automated",
      "contributionAmount": 1200,
      "targetDate": "2023-01-15",
      "createdBy": "cad93347-d28d-49bc-8960-1c326ad9832e",
      "kolloId": "5a33bdc1-173e-4631-b2ab-13f4d1f1a836",
      "status": "active",
      "createdAt": "2025-06-19T23:16:29Z",
      "updatedAt": "2025-06-19T23:16:29Z",
      "account": {
        "accountId": "274f2906-4fb0-4464-b0f2-818057fa3ed9",
        "accountType": "kollo",
        "balance": "1200",
        "currency": "NGN",
        "status": "verified",
        "details": {},
        "customerId": "cad93347-d28d-49bc-8960-1c326ad9832e",
        "kolloId": "5a33bdc1-173e-4631-b2ab-13f4d1f1a836",
        "createdAt": "2025-06-19T23:16:29Z",
        "updatedAt": "2025-06-19T23:16:29Z"
      },
      "progressPercentage": 100
    }
  }
}
```

**SDK Code**

```python Kollo GoGet
import requests

url = "https://https/kollo"

payload = {
    "type": "flexible",
    "name": "Sunny days",
    "description": "Buy myself another new car",
    "contribution_amount": 8900,
    "frequency": "monthly"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript Kollo GoGet
const url = 'https://https/kollo';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"type":"flexible","name":"Sunny days","description":"Buy myself another new car","contribution_amount":8900,"frequency":"monthly"}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Kollo GoGet
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://https/kollo"

	payload := strings.NewReader("{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Kollo GoGet
require 'uri'
require 'net/http'

url = URI("https://https/kollo")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}"

response = http.request(request)
puts response.read_body
```

```java Kollo GoGet
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/kollo")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}")
  .asString();
```

```php Kollo GoGet
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/kollo', [
  'body' => '{
  "type": "flexible",
  "name": "Sunny days",
  "description": "Buy myself another new car",
  "contribution_amount": 8900,
  "frequency": "monthly"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp Kollo GoGet
using RestSharp;

var client = new RestClient("https://https/kollo");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Kollo GoGet
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "type": "flexible",
  "name": "Sunny days",
  "description": "Buy myself another new car",
  "contribution_amount": 8900,
  "frequency": "monthly"
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://https/kollo")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```

### Kollo Cruise

**Request**

```json
{
  "type": "flexible",
  "name": "Sunny days",
  "description": "Buy myself another new car",
  "contribution_amount": 8900,
  "frequency": "monthly"
}
```

**Response**

```json
{
  "message": "Rainy days Kollo created successfully",
  "body": {
    "kollo": {
      "name": "Rainy days",
      "description": "Buy myself a new car",
      "type": "flexible",
      "contributionAmount": 1200,
      "targetDate": "2023-01-15",
      "createdBy": "cad93347-d28d-49bc-8960-1c326ad9832e",
      "kolloId": "446bec24-b04d-493c-9d96-d3937f4ca5f5",
      "status": "active",
      "createdAt": "2025-06-19T23:14:51Z",
      "updatedAt": "2025-06-19T23:14:51Z",
      "account": {
        "accountId": "7387240d-40ca-4a05-8292-13d803f8b58a",
        "accountType": "kollo",
        "balance": "1200",
        "currency": "NGN",
        "status": "verified",
        "details": {},
        "customerId": "cad93347-d28d-49bc-8960-1c326ad9832e",
        "kolloId": "446bec24-b04d-493c-9d96-d3937f4ca5f5",
        "createdAt": "2025-06-19T23:14:51Z",
        "updatedAt": "2025-06-19T23:14:51Z"
      },
      "progressPercentage": 100
    }
  }
}
```

**SDK Code**

```python Kollo Cruise
import requests

url = "https://https/kollo"

payload = {
    "type": "flexible",
    "name": "Sunny days",
    "description": "Buy myself another new car",
    "contribution_amount": 8900,
    "frequency": "monthly"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript Kollo Cruise
const url = 'https://https/kollo';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"type":"flexible","name":"Sunny days","description":"Buy myself another new car","contribution_amount":8900,"frequency":"monthly"}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Kollo Cruise
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://https/kollo"

	payload := strings.NewReader("{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Kollo Cruise
require 'uri'
require 'net/http'

url = URI("https://https/kollo")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}"

response = http.request(request)
puts response.read_body
```

```java Kollo Cruise
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/kollo")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}")
  .asString();
```

```php Kollo Cruise
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/kollo', [
  'body' => '{
  "type": "flexible",
  "name": "Sunny days",
  "description": "Buy myself another new car",
  "contribution_amount": 8900,
  "frequency": "monthly"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp Kollo Cruise
using RestSharp;

var client = new RestClient("https://https/kollo");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"type\": \"flexible\",\n  \"name\": \"Sunny days\",\n  \"description\": \"Buy myself another new car\",\n  \"contribution_amount\": 8900,\n  \"frequency\": \"monthly\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Kollo Cruise
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "type": "flexible",
  "name": "Sunny days",
  "description": "Buy myself another new car",
  "contribution_amount": 8900,
  "frequency": "monthly"
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://https/kollo")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```