Retrieve
Preview
GET
https://api.senditly.ai/v1/workspace
Retrieve a workspace
This API is in preview. It may be changed in the future.
Retrieve a workspace
cURL
JavaScript
curl -X GET https://api.senditly.ai/v1/workspace \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json"try {
const response = await fetch('https://api.senditly.ai/v1/workspace', {
method: 'GET',
headers: {
Authorization: 'Bearer <API_KEY>',
},
body: JSON.stringify({ ... request json ... }),
});
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}Headers
+-Hide 1 propertiesShow 1 properties
Authorization
string
required
Bearer authentication of the form "Bearer <API_KEY>", where API_KEY is your api key.
Response
+-Hide 6 propertiesShow 6 properties
id
string
required
The id of the workspace.
name
string
required
icon
string
required
allowedDomains
string[]
required
string
createdAt
string
required
A date string in ISO 8601 format when the workspace was created.
updatedAt
string
required
A date string in ISO 8601 format when the workspace was last updated.
Retrieve a workspace
cURL
JavaScript
curl -X GET https://api.senditly.ai/v1/workspace \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json"try {
const response = await fetch('https://api.senditly.ai/v1/workspace', {
method: 'GET',
headers: {
Authorization: 'Bearer <API_KEY>',
},
body: JSON.stringify({ ... request json ... }),
});
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}Update
Preview
POST
https://api.senditly.ai/v1/workspace
Update a workspace
This API is in preview. It may be changed in the future.
Update a workspace
cURL
JavaScript
curl -X POST https://api.senditly.ai/v1/workspace \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{ ... request json ... }'try {
const response = await fetch('https://api.senditly.ai/v1/workspace', {
method: 'POST',
headers: {
Authorization: 'Bearer <API_KEY>',
'Content-Type': 'application/json',
},
body: JSON.stringify({ ... request json ... }),
});
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}Headers
+-Hide 1 propertiesShow 1 properties
Authorization
string
required
Bearer authentication of the form "Bearer <API_KEY>", where API_KEY is your api key.
Request
+-Hide 3 propertiesShow 3 properties
name
string
required
icon
string
optional
allowedDomains
string[]
required
string
Response
+-Hide 6 propertiesShow 6 properties
id
string
required
The id of the workspace.
name
string
required
icon
string
required
allowedDomains
string[]
required
string
createdAt
string
required
A date string in ISO 8601 format when the workspace was created.
updatedAt
string
required
A date string in ISO 8601 format when the workspace was last updated.
Update a workspace
cURL
JavaScript
curl -X POST https://api.senditly.ai/v1/workspace \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{ ... request json ... }'try {
const response = await fetch('https://api.senditly.ai/v1/workspace', {
method: 'POST',
headers: {
Authorization: 'Bearer <API_KEY>',
'Content-Type': 'application/json',
},
body: JSON.stringify({ ... request json ... }),
});
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}© 2025 Unbounded Pioneering株式会社
プライバシーポリシー利用規約スパムメール対策ポリシーデータ処理契約(DPA)情報セキュリティ基本方針サービスレベルアグリーメント(SLA)
Senditly