API Docs

marketplace-developer

AdminUpdated Sep 19, 2026
GEThttps://api.chatlychat.com/v1/marketplace/developer/apps
Parameters
NameInTypeRequiredDescription
Idempotency-KeyheaderstringnoUUIDv4 or 16-128 char opaque token. Required on write endpoints in production. Replays return the cached response with `Idempotency-Replay: true`; reusing the key with a different body returns 409 idempotency_conflict.
Responses
200
Code samples
cURL
curl -X GET "https://api.chatlychat.com/v1/marketplace/developer/apps" \
  -H "Idempotency-Key: <value>"
TypeScript
const res = await fetch('https://api.chatlychat.com/v1/marketplace/developer/apps', {
  method: 'GET',
  headers: {
    'Idempotency-Key': '<value>',
  },
});
const data = await res.json();
Python
import requests

res = requests.request(
    "GET",
    "https://api.chatlychat.com/v1/marketplace/developer/apps",
    headers={
    "Idempotency-Key": "<value>",
    },
)
data = res.json()
Go
package main

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

func main() {
	req, _ := http.NewRequest("GET", "https://api.chatlychat.com/v1/marketplace/developer/apps", nil)
	req.Header.Set("Idempotency-Key", "<value>")
	res, _ := http.DefaultClient.Do(req)
	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)
	fmt.Println(string(body))
}
PHP
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.chatlychat.com/v1/marketplace/developer/apps');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Idempotency-Key: <value>']);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
Ruby
require 'net/http'
require 'uri'

uri = URI('https://api.chatlychat.com/v1/marketplace/developer/apps')
req = Net::HTTP::Get.new(uri)
req['Idempotency-Key'] = '<value>'
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
  http.request(req)
end
puts res.body
Java
import java.net.URI;
import java.net.http.*;
import java.net.http.HttpRequest.BodyPublishers;

HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("https://api.chatlychat.com/v1/marketplace/developer/apps"))
    .header("Idempotency-Key", "<value>")
    .GET()
    .build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
POSThttps://api.chatlychat.com/v1/marketplace/developer/apps
Parameters
NameInTypeRequiredDescription
Idempotency-KeyheaderstringnoUUIDv4 or 16-128 char opaque token. Required on write endpoints in production. Replays return the cached response with `Idempotency-Replay: true`; reusing the key with a different body returns 409 idempotency_conflict.
Request body application/json
{
  "slug": "string",
  "name": "string",
  "shortDescription": "string",
  "description": "string",
  "iconUrl": "string",
  "homepageUrl": "string",
  "supportEmail": "string",
  "categories": [
    "string"
  ],
  "scopes": [
    "string"
  ],
  "webhookUrl": "string",
  "oauthCallbackUrl": "string",
  "pricing": {},
  "publisher": "string",
  "dashboardApp": {
    "url": "string",
    "tabLabel": "string",
    "height": 0
  }
}
Responses
201
Code samples
cURL
curl -X POST "https://api.chatlychat.com/v1/marketplace/developer/apps" \
  -H "Idempotency-Key: <value>" \
  -H "Content-Type: application/json" \
  -d '{"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}'
TypeScript
const res = await fetch('https://api.chatlychat.com/v1/marketplace/developer/apps', {
  method: 'POST',
  headers: {
    'Idempotency-Key': '<value>',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}),
});
const data = await res.json();
Python
import requests

res = requests.request(
    "POST",
    "https://api.chatlychat.com/v1/marketplace/developer/apps",
    headers={
    "Idempotency-Key": "<value>",
    "Content-Type": "application/json",
    },
    json={"slug": "string", "name": "string", "shortDescription": "string", "description": "string", "iconUrl": "string", "homepageUrl": "string", "supportEmail": "string", "categories": ["string"], "scopes": ["string"], "webhookUrl": "string", "oauthCallbackUrl": "string", "pricing": {}, "publisher": "string", "dashboardApp": {"url": "string", "tabLabel": "string", "height": 0}},
)
data = res.json()
Go
package main

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

func main() {
	req, _ := http.NewRequest("POST", "https://api.chatlychat.com/v1/marketplace/developer/apps", strings.NewReader(`{"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}`))
	req.Header.Set("Idempotency-Key", "<value>")
	req.Header.Set("Content-Type", "application/json")
	res, _ := http.DefaultClient.Do(req)
	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)
	fmt.Println(string(body))
}
PHP
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.chatlychat.com/v1/marketplace/developer/apps');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Idempotency-Key: <value>', 'Content-Type: application/json']);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}');
$response = curl_exec($ch);
curl_close($ch);
echo $response;
Ruby
require 'net/http'
require 'uri'

uri = URI('https://api.chatlychat.com/v1/marketplace/developer/apps')
req = Net::HTTP::Post.new(uri)
req['Idempotency-Key'] = '<value>'
req['Content-Type'] = 'application/json'
req.body = '{"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}'
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
  http.request(req)
end
puts res.body
Java
import java.net.URI;
import java.net.http.*;
import java.net.http.HttpRequest.BodyPublishers;

HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("https://api.chatlychat.com/v1/marketplace/developer/apps"))
    .header("Idempotency-Key", "<value>")
    .header("Content-Type", "application/json")
    .method("POST", BodyPublishers.ofString("{\"slug\":\"string\",\"name\":\"string\",\"shortDescription\":\"string\",\"description\":\"string\",\"iconUrl\":\"string\",\"homepageUrl\":\"string\",\"supportEmail\":\"string\",\"categories\":[\"string\"],\"scopes\":[\"string\"],\"webhookUrl\":\"string\",\"oauthCallbackUrl\":\"string\",\"pricing\":{},\"publisher\":\"string\",\"dashboardApp\":{\"url\":\"string\",\"tabLabel\":\"string\",\"height\":0}}"))
    .build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
GEThttps://api.chatlychat.com/v1/marketplace/developer/apps/{id}
Detail view of a developer's own draft (publisher-scoped — 404 on others' drafts).
Parameters
NameInTypeRequiredDescription
idpathstringyes
Idempotency-KeyheaderstringnoUUIDv4 or 16-128 char opaque token. Required on write endpoints in production. Replays return the cached response with `Idempotency-Replay: true`; reusing the key with a different body returns 409 idempotency_conflict.
Responses
200
Code samples
cURL
curl -X GET "https://api.chatlychat.com/v1/marketplace/developer/apps/{id}" \
  -H "Idempotency-Key: <value>"
TypeScript
const res = await fetch('https://api.chatlychat.com/v1/marketplace/developer/apps/{id}', {
  method: 'GET',
  headers: {
    'Idempotency-Key': '<value>',
  },
});
const data = await res.json();
Python
import requests

res = requests.request(
    "GET",
    "https://api.chatlychat.com/v1/marketplace/developer/apps/{id}",
    headers={
    "Idempotency-Key": "<value>",
    },
)
data = res.json()
Go
package main

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

func main() {
	req, _ := http.NewRequest("GET", "https://api.chatlychat.com/v1/marketplace/developer/apps/{id}", nil)
	req.Header.Set("Idempotency-Key", "<value>")
	res, _ := http.DefaultClient.Do(req)
	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)
	fmt.Println(string(body))
}
PHP
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.chatlychat.com/v1/marketplace/developer/apps/{id}');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Idempotency-Key: <value>']);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
Ruby
require 'net/http'
require 'uri'

uri = URI('https://api.chatlychat.com/v1/marketplace/developer/apps/{id}')
req = Net::HTTP::Get.new(uri)
req['Idempotency-Key'] = '<value>'
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
  http.request(req)
end
puts res.body
Java
import java.net.URI;
import java.net.http.*;
import java.net.http.HttpRequest.BodyPublishers;

HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("https://api.chatlychat.com/v1/marketplace/developer/apps/{id}"))
    .header("Idempotency-Key", "<value>")
    .GET()
    .build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
PATCHhttps://api.chatlychat.com/v1/marketplace/developer/apps/{id}
Parameters
NameInTypeRequiredDescription
idpathstringyes
Idempotency-KeyheaderstringnoUUIDv4 or 16-128 char opaque token. Required on write endpoints in production. Replays return the cached response with `Idempotency-Replay: true`; reusing the key with a different body returns 409 idempotency_conflict.
Request body application/json
{
  "slug": "string",
  "name": "string",
  "shortDescription": "string",
  "description": "string",
  "iconUrl": "string",
  "homepageUrl": "string",
  "supportEmail": "string",
  "categories": [
    "string"
  ],
  "scopes": [
    "string"
  ],
  "webhookUrl": "string",
  "oauthCallbackUrl": "string",
  "pricing": {},
  "publisher": "string",
  "dashboardApp": {
    "url": "string",
    "tabLabel": "string",
    "height": 0
  }
}
Responses
200
Code samples
cURL
curl -X PATCH "https://api.chatlychat.com/v1/marketplace/developer/apps/{id}" \
  -H "Idempotency-Key: <value>" \
  -H "Content-Type: application/json" \
  -d '{"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}'
TypeScript
const res = await fetch('https://api.chatlychat.com/v1/marketplace/developer/apps/{id}', {
  method: 'PATCH',
  headers: {
    'Idempotency-Key': '<value>',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}),
});
const data = await res.json();
Python
import requests

res = requests.request(
    "PATCH",
    "https://api.chatlychat.com/v1/marketplace/developer/apps/{id}",
    headers={
    "Idempotency-Key": "<value>",
    "Content-Type": "application/json",
    },
    json={"slug": "string", "name": "string", "shortDescription": "string", "description": "string", "iconUrl": "string", "homepageUrl": "string", "supportEmail": "string", "categories": ["string"], "scopes": ["string"], "webhookUrl": "string", "oauthCallbackUrl": "string", "pricing": {}, "publisher": "string", "dashboardApp": {"url": "string", "tabLabel": "string", "height": 0}},
)
data = res.json()
Go
package main

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

func main() {
	req, _ := http.NewRequest("PATCH", "https://api.chatlychat.com/v1/marketplace/developer/apps/{id}", strings.NewReader(`{"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}`))
	req.Header.Set("Idempotency-Key", "<value>")
	req.Header.Set("Content-Type", "application/json")
	res, _ := http.DefaultClient.Do(req)
	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)
	fmt.Println(string(body))
}
PHP
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.chatlychat.com/v1/marketplace/developer/apps/{id}');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Idempotency-Key: <value>', 'Content-Type: application/json']);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}');
$response = curl_exec($ch);
curl_close($ch);
echo $response;
Ruby
require 'net/http'
require 'uri'

uri = URI('https://api.chatlychat.com/v1/marketplace/developer/apps/{id}')
req = Net::HTTP::Patch.new(uri)
req['Idempotency-Key'] = '<value>'
req['Content-Type'] = 'application/json'
req.body = '{"slug":"string","name":"string","shortDescription":"string","description":"string","iconUrl":"string","homepageUrl":"string","supportEmail":"string","categories":["string"],"scopes":["string"],"webhookUrl":"string","oauthCallbackUrl":"string","pricing":{},"publisher":"string","dashboardApp":{"url":"string","tabLabel":"string","height":0}}'
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
  http.request(req)
end
puts res.body
Java
import java.net.URI;
import java.net.http.*;
import java.net.http.HttpRequest.BodyPublishers;

HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("https://api.chatlychat.com/v1/marketplace/developer/apps/{id}"))
    .header("Idempotency-Key", "<value>")
    .header("Content-Type", "application/json")
    .method("PATCH", BodyPublishers.ofString("{\"slug\":\"string\",\"name\":\"string\",\"shortDescription\":\"string\",\"description\":\"string\",\"iconUrl\":\"string\",\"homepageUrl\":\"string\",\"supportEmail\":\"string\",\"categories\":[\"string\"],\"scopes\":[\"string\"],\"webhookUrl\":\"string\",\"oauthCallbackUrl\":\"string\",\"pricing\":{},\"publisher\":\"string\",\"dashboardApp\":{\"url\":\"string\",\"tabLabel\":\"string\",\"height\":0}}"))
    .build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
POSThttps://api.chatlychat.com/v1/marketplace/developer/apps/{id}/submit
Parameters
NameInTypeRequiredDescription
idpathstringyes
Idempotency-KeyheaderstringnoUUIDv4 or 16-128 char opaque token. Required on write endpoints in production. Replays return the cached response with `Idempotency-Replay: true`; reusing the key with a different body returns 409 idempotency_conflict.
Responses
201
Code samples
cURL
curl -X POST "https://api.chatlychat.com/v1/marketplace/developer/apps/{id}/submit" \
  -H "Idempotency-Key: <value>"
TypeScript
const res = await fetch('https://api.chatlychat.com/v1/marketplace/developer/apps/{id}/submit', {
  method: 'POST',
  headers: {
    'Idempotency-Key': '<value>',
  },
});
const data = await res.json();
Python
import requests

res = requests.request(
    "POST",
    "https://api.chatlychat.com/v1/marketplace/developer/apps/{id}/submit",
    headers={
    "Idempotency-Key": "<value>",
    },
)
data = res.json()
Go
package main

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

func main() {
	req, _ := http.NewRequest("POST", "https://api.chatlychat.com/v1/marketplace/developer/apps/{id}/submit", nil)
	req.Header.Set("Idempotency-Key", "<value>")
	res, _ := http.DefaultClient.Do(req)
	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)
	fmt.Println(string(body))
}
PHP
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.chatlychat.com/v1/marketplace/developer/apps/{id}/submit');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Idempotency-Key: <value>']);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
Ruby
require 'net/http'
require 'uri'

uri = URI('https://api.chatlychat.com/v1/marketplace/developer/apps/{id}/submit')
req = Net::HTTP::Post.new(uri)
req['Idempotency-Key'] = '<value>'
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
  http.request(req)
end
puts res.body
Java
import java.net.URI;
import java.net.http.*;
import java.net.http.HttpRequest.BodyPublishers;

HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("https://api.chatlychat.com/v1/marketplace/developer/apps/{id}/submit"))
    .header("Idempotency-Key", "<value>")
    .method("POST", BodyPublishers.noBody())
    .build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
Was this page helpful?