API ืฆืืืืจื ืืงืจืืืช ื ืชืื ืื ืืืืขืจืืช. ืืจืกื v1, ืืืืืช ืืจื Bearer token.
ืื ืืงืฉื ืืืจืฉืช header ืฉื Authorization: Bearer <your_api_key>.
ืฆืืจ ืืคืชื ืืืฉ ืืืื API ๐ ืืขืืื ืืคืจืืคืื. ืืืคืชื ืืืฆื ืคืขื ืืืช ืืืื โ ืฉืืืจ ืืืชื ืืืงืื ืืืื.
ืืืืืจ ืคืจืื ืืืฉืชืืฉ ืฉื ืื ืฉืืืคืชื ืฉืื (ืฉืืืืฉื ืืืืืงืช ืืคืชื).
curl -H "Authorization: Bearer mims_..." https://studio.mims.co.il/api/v1/me
ืชืืืื:
{
"email": "shlomi@mims.co.il",
"name": "Shlomi Zidkiya",
"role": "ืื ืื ืืืืคื",
"phone": "...",
"scope": "read"
}
ืจืฉืืืช ืคืจืงืื ืขื ืคืืืืจืื ืืขืืืื. ืคืจืืืจืื ืืืคืฆืืื ืืืื:
| ืคืจืืืจ | ืชืืืืจ |
|---|---|
limit | 1-200 (ืืจืืจืช ืืืื 50) |
offset | ืืขืืืื |
folder_id | ืกืื ืื ืืคื ืคืืืงืืกื |
status | ืกืืืืก ืืืืืง, ืื __none__ ืืคืจืงืื ืืื ืกืืืืก |
q | ืืืคืืฉ ืืืคืฉื ืืฉื/ืงืืืฅ |
curl -H "Authorization: Bearer mims_..." \ "https://studio.mims.co.il/api/v1/projects?folder_id=1&limit=10"
ืชืืืื:
{
"total": 18,
"limit": 10,
"offset": 0,
"items": [
{
"id": 30,
"title": "...",
"filename": "...",
"created_at": "2026-05-12T08:00:00",
"folder_id": 1,
"drive_link": "https://...",
"has_delivered": true,
"billing": {"type":"per-episode","amount":800,"paid":false,"invoice_issued":false},
"latest_status": {"status_text":"ื ืฉืื ืืขืจืืื","assignee":"ืฉืืืื","created_at":"..."}
}
]
}
ืคืจืืื ืืืืื ืขื ืคืจืง ืืืื โ ืืืื ืชืืืื, SRT, ืืืชืจืืช, ืคืจืงืื, ืฉืืจืืื, ืคืืกืืื, ืืจืกื ืืขืืืื ืช, ืชืฉืืืืื, ืืืืืกืืืจืื ืืืืื ืฉื ืกืืืืกืื. ืื ืืกืฃ: ืชืืื ืืช ืขืจืืื ืืคืจืง ืืืื (episode_edit), ืขืจืืื ืืืืืืืืช (auto_edit), ืฉืืจืืื ืฉืืืงืฉ ืืืฉืชืืฉ (user_shorts + user_shorts_srts), shorts_srts, ืคืชืงื ืืคืงื (production_notes_input/production_notes_text), ืืื ืืงืืืื ืืืืชืืืื ืืืืืืจืื (cuts).
curl -H "Authorization: Bearer mims_..." https://studio.mims.co.il/api/v1/projects/30
ืจืฉืืืช ืื ืืคืืืงืืกืืื ืฉืืฉ ืื ืืืฉื ืืืืื โ ืขื ืกืคืืจืช ืคืจืงืื ืืชืฉืืืืื.
curl -H "Authorization: Bearer mims_..." https://studio.mims.co.il/api/v1/podcasts
ืคืืืงืืกื ืืืื + ืจืฉืืืช ืคืจืงืื ืื.
curl -H "Authorization: Bearer mims_..." https://studio.mims.co.il/api/v1/podcasts/1
import requests, os
API_KEY = os.environ["MIMS_API_KEY"]
r = requests.get(
"https://studio.mims.co.il/api/v1/projects",
headers={"Authorization": f"Bearer {API_KEY}"}
)
print(r.json())
const res = await fetch("https://studio.mims.co.il/api/v1/projects", {
headers: { Authorization: `Bearer ${process.env.MIMS_API_KEY}` }
});
const data = await res.json();
ืืฉืชืืฉ ื-HTTP Request node:
https://studio.mims.co.il/api/v1/projectsAuthorization Value: Bearer mims_...| ืงืื | ืืฉืืขืืช |
|---|---|
| 401 | missing/invalid/revoked Bearer token |
| 404 | ืืฉืื ืื ื ืืฆื ืื ืฉืืื ืื ืืืฉื |
| 5xx | ืฉืืืืช ืฉืจืช โ ืชืืื ืืืืืง ืืฆื ืืื ืื |
ืืื ืืคืชื ืืฉ scope: read / write / admin.
write ืืืคืฉืจ ืืฆืืจื/ืขืจืืื/ืืืืงื. read ืืืืื ื-GET ืืืื (ืืืืืจ 403 ืขื ืคืขืืืืช ืืชืืื).
ืฉืื ืื ืฉื ืคืจืง ืื ืืขืืจื ืืคืืืงืืกื ืืืจ. ืืืจืฉ scope write.
curl -X PATCH -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" -d '{{"title":"ืืืชืจืช ืืืฉื","folder_id":13}}' https://studio.mims.co.il/api/v1/projects/30
ืืืกืคืช ืขืืืื ืกืืืืก ืืคืจืง. status_text ืืืื, assignee ื-notes ืืืคืฆืืื ืืืื.
curl -X POST -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" -d '{{"status_text":"ื ืฉืื ืืขืจืืื","assignee":"ืฉืืืื","notes":"ืืืืฃ"}}' https://studio.mims.co.il/api/v1/projects/30/statuses
ืขืจืืื/ืืืืงื ืฉื ืขืืืื ืกืืืืก ืงืืื.
ืืฆืืจืช ืคืืืงืืกื ืืืฉ. name ืืืื, ืืฉืืจ ืืืคืฆืืื ืื.
curl -X POST -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" -d '{{"name":"ืคืืืงืืกื ืืืฉ","category":"ืขืกืงืื","description":"...","slug":"new-pod"}}' https://studio.mims.co.il/api/v1/podcasts
ืขืืืื ืคืืืงืืกื ืงืืื. ืฉืืืช ืืืคืฆืืื ืืืื: name, category, description, slug, image_url, visible, status (active/archived).
curl -X PATCH -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" -d '{{"description":"ืชืืืืจ ืืขืืืื","visible":false}}' https://studio.mims.co.il/api/v1/podcasts/1
ืจืฉืืืช ืืฉืืืืช. ืคืืืืจืื ืืืคืฆืืื ืืืื:
| ืคืจืืืจ | ืชืืืืจ |
|---|---|
status | pending / in_progress / done |
assignee | ืืืืืื ืืืงืื |
context_type | project ืื folder |
context_id | ืืืื ืืงืื ืืงืกื |
only_mine | 1 โ ืจืง ืืฉืืืืช ืฉืื |
ืืฆืืจืช ืืฉืืื. ืืืจืฉ scope write. title ืืืื.
curl -X POST -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" -d '{{"title":"ืืืืืง ืคืจืง","description":"...","assignee_email":"shlomi@mims.co.il","priority":"high","due_date":"2026-05-20","context_type":"project","context_id":30}}' https://studio.mims.co.il/api/v1/tasks
ืคืจืืื / ืขืืืื / ืืืืงื. PATCH ืืืื ืืขืืื title, description, assignee_email, status, priority, due_date.
ืืขืจืืช ืืชืฉืืืืื โ entries ืขืฆืืืืื ืขื ืกืืืืกืื (pending, payment_request, invoiced, paid).
ืื ืืจืฉืืืืช ืื ืืืฉืืช ืขื ืฉื ืคืืืงืืกื/ืคืจืง. ืคืืืืจืื: status, context, folder_id.
curl -H "Authorization: Bearer mims_..." "https://studio.mims.co.il/api/v1/billing/entries?status=pending"
context = project ืื folder.
ืืืกืคืช ืืืื ืืืฉ. ืืืจืฉ write.
curl -X POST -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" -d '{{"amount":800,"description":"4 ืืืืจืื","status":"pending"}}' https://studio.mims.co.il/api/v1/billing/entries/project/30
ืขืืืื/ืืืืงื. ืขืืืื status ื-paid ืืกืื ืืืืืืืืช paid_date.
ื ืืืื ืืืืื โ ืฉืืืช, ืกืืืืก ืืฆืื ืืจ, ืืืืื ืฉืืืืช. ืกืืืืกืื:
new, contacted, negotiating, quote_sent,
frozen, won, lost, rejected.
ืืงืืจืืช: instagram, whatsapp, phone, website,
referral, other.
ืจืฉืืืช ืืืืื. ืคืืืืจืื ืืืคืฆืืื ืืืื: status, source, q (ืืืคืืฉ ืืฉื/ืืืคืื/ืืืืืื/ืื ืืคื ื/ืฉืืจืืช).
curl -H "Authorization: Bearer mims_..." \ "https://studio.mims.co.il/api/v1/leads?status=new"
ืืฆืืจืช ืืื (scope=write). ืืืื: name. ืืืคืฆืืื ืื: phone, email,
source, referrer, service, budget,
status, follow_up_date (YYYY-MM-DD), notes.
curl -X POST -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" \
-d '{"name":"ืื ืืื","source":"whatsapp","referrer":"ืจืื ืช","service":"ืฆืืืื ืคืืืงืืกื"}' \
https://studio.mims.co.il/api/v1/leads
ืคืจืื ืืื ืืืืื ืืืื activities (ืืืื ืืฉืืืืช, ืืืืืฉ ืืืฉื).
ืขืืืื ืฉืืืช/ืกืืืืก/ืชืืจืื ืืขืงื, ืื ืืืืงื (scope=write). ืืขืืจ ื-won/lost/rejected ืืกืื closed_at.
ืืืกืคืช ืกืืืื ืฉืืื ืืืืื (scope=write). ืืืฃ: {"summary":"..."}.
curl -X POST -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" \
-d '{"summary":"ืฉืืื ืจืืฉืื ื โ ืืขืื ืืื ืืฆืืืื ืคืจืง, ื ืฉืื ืืฆืขื"}' \
https://studio.mims.co.il/api/v1/leads/12/activities
ืืืืงืช ืกืืืื ืฉืืื (scope=write).
ืืกืคืจ ืืืืื ืฉืืืจืฉืื ืืืคืื (ืืืฉืื, ืื ืฉืืืขื ืืืขืงื ืฉืืื ืืืื/ืืืืืืจ) โ ืืืืื'.
{ "pending": 3 }
ืงืจืืื ืฉื ืืืืืืช/ืืฉืืื ืืืช ืฉืืืคืงื, ืืืฆืืจืช ืืืืื ืืืืืืื ืคืชืืืื. ืืืฉืืจ ืืืคืงื ืืืืชืืช ืฉื ืืฉืืื ืืช/ืงืืื ืืืืจื ืื ื ื ืฉืืจืื ืืื ืืื ืืืืฉืง ืืืื โ ืื ื ืืฉืคืื ื-API.
ืจืฉืืืช ืืืืืืช/ืืฉืืื ืืืช. ืคืืืืจ ืืืคืฆืืื ืื status (draft, approved, failed, rejected). ืืืื client_name, ืกืืืืก ืชืฉืืื, ืงืืฉืืจืื ืืืกืืืื.
curl -H "Authorization: Bearer mims_..." \ "https://studio.mims.co.il/api/v1/invoices?status=approved"
ืืืืื/ืืฉืืื ืืช ืืืื ืืืื ืฉืืจืืช, ืืงืื, ืกืืืืก ืชืฉืืื ืืงืืื ืืงืืฉืจืช.
ืืฆืืจืช ืืืืืช ืืฉืืื ืืช ืืื ืืืืืืื ืืคืชืืืื ืฉื ืืคืืืงืืกื (scope=write). ืืืจืฉ ืืืืืจ Morning ืืงืืฉืืจ ืืคืืืงืืกื ืืืงืื. ืื ืืคืืง ืืืื ืืืืจื ืื ื โ ืจืง ืืืืื.
curl -X POST -H "Authorization: Bearer mims_..." \ https://studio.mims.co.il/api/v1/folders/1/invoices
ืื "ื, ืืื ืืืืืืืื ืืคืชืืืื ืฉื ืคืจืง ืืืื (scope=write).
ื ืืืื ืืืื ืืืืืคื ืืื ืืฉืืื ื-Calendly ืืืืืืจ (ืืืืจืืช โ ืืืื). ืื ืืืื ืื ื-ISO-8601 UTC.
ืืืืืืจ ืืืืื ืืคื ืืขื ืกืืืืช ืืขืืืื. ืื ืืืืื ืื ืืืืืจ โ ืืืืืจ 412 ืขื {"error":"calendly_not_connected"}.
ืกืืืืก ืืืืืืจ: connected, ืืื ืื owner_name, owner_email, timezone, scheduling_url, last_verified_at.
ืืฉืืจืืชืื ืืคืขืืืื (ืกืืื ืืงืืื): uri, name, duration, duration_options, description, location_kind.
ืืืจืืขืื ืืชืืืื ืื. ืคืืืืจืื: status (active ืืจืืจืช ืืืื / canceled),
from, to (ISO; ืืจืืจืช ืืืื โ-30 ืขื +120 ืืื). ืื ืืืจืืข ืืืื start_time,
end_time, name, location, ื-invitee ({name, email, phone} โ ืืืคืื best-effort).
curl -H "Authorization: Bearer mims_..." \ "https://studio.mims.co.il/api/v1/calendly/events?status=active"
ืืืขืืื ืคื ืืืื ืืฉืืจืืช. ืืืื event_type (ื-uri ื-event-types). ืืืคืฆืืื ืื from/to
(ืืืืื ื ืืชื ืืืืืืืืช ื-7 ืืืื ืืืขืชืื ืืืื โ ืืืืืช Calendly). ืืืืืจ slots: [{iso, scheduling_url, invitees_remaining}].
curl -H "Authorization: Bearer mims_..." \ "https://studio.mims.co.il/api/v1/calendly/availability?event_type=https://api.calendly.com/event_types/XXX&from=2026-05-18T00:00:00Z"
ืืงืืืืช ืงืืืืื (ืืืจืืฆืื ื-invitees ืฉื ืืืจืืขืื + ืืืคืื ืื ืฉื ืฉืืจื ืืงืืืืช). ืืืืืจ
clients: [{name, email, phone, count}] ืืืืื ืืคื ืชืืืจืืช. ื ืฉืืจ ื-cache ื-15 ืืงืณ; ?refresh=1 ืืืืฅ ืจืขื ืื.
ืงืืืขืช ืืืจืืข ืืืงืื (scope=write). ืืืื: event_type_uri, start_time (ISO/UTC),
name, email. ืืืคืฆืืื ืื: duration, phone,
guests (ืืขืจื ืืืืืืืื ืื ืืืืืืงืืื {name,email,phone} โ ื-Calendly ื ืฉืืืื ืจืง ืืืืืืืื, ืืฉืืจ ื ืฉืืจ ืืงืืืืช),
location_kind (physical / ask_invitee), location_text (ืืืื ืืฉ-ask_invitee).
ืืืืคืื ืื ื ืฉืืจืื ืืงืืืืช ืืืืืืกืื ืืืืืืืืช ืืช clients ืืขืชืื.
curl -X POST -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" \
-d '{"event_type_uri":"https://api.calendly.com/event_types/XXX","start_time":"2026-05-20T08:00:00Z","duration":60,"name":"ืื ืืื","email":"d@x.com","phone":"0521234567"}' \
https://studio.mims.co.il/api/v1/calendly/events
ืืืืื ืืืจืืข (scope=write). ืืืื event_uri (URL ืฉื api.calendly.com), ืืืคืฆืืื ืื reason (ื ืฉืื ืืืงืื).
curl -X POST -H "Authorization: Bearer mims_..." -H "Content-Type: application/json" \
-d '{"event_uri":"https://api.calendly.com/scheduled_events/XXX","reason":"ื ืืื ืืืงืฉืช ืืืงืื"}' \
https://studio.mims.co.il/api/v1/calendly/events/cancel
ืืื ืืืฆืืืช ืืืื ืื ืืฉื ื-Morning (ืืฉืืื ืืช ืืจืืงื). ืืืจืฉ ืืืืืจ Morning ืคืขืื (ืืืจืช 412
{"error":"morning_not_connected"}). ืื ืชืื ืื ืืืืฉืืื ืืฆื ืืฉืจืช ืื ืฉืืจืื ื-cache ื-15 ืืงืณ.
ืกืืืื ืืืฆืืืช. ืคืจืืืจ ืืืคืฆืืื ืื months (3โ24, ืืจืืจืช ืืืื 12), refresh=1 ืืจืขื ืื ืืืืืฅ.
ืืืืืจ: totals (this_month, last_month, ytd, all_window,
avg_month, vat, net), monthly[] (ืกืืจื ืืืืฉืืช),
by_classification[] (ืืคื ืกืืืื ืืฉืืื ืื), by_supplier[] (ืกืคืงืื ืืืืืืื),
by_payment_type[], fixed_variable (ืงืืืข ืืื ืืฉืชื ื โ ืืืืจืืกืืืงื: ืกืคืง ืฉืืืืจ ื-3+ ืืืืฉืื
ื ืืฉื ืงืืืข, ืืืื recurring_suppliers[]), ื-recent[] (40 ืืืืฆืืืช ืืืืจืื ืืช ืขื ืงืืฉืืจ ืืืกืื).
curl -H "Authorization: Bearer mims_..." \ "https://studio.mims.co.il/api/v1/expenses/summary?months=12"
ืืขืืืช ืงืืืฅ ืืืืื/ืืืืื ืืชืืืื ืืื ืืชืื ืืืืืืื ืขื-ืืื Claude โ ืืืืืง ืืื ืืืืคืก ืืืชืจ.
ืืืจืฉ scope=write. ืืืงืฉื ืืกืื multipart/form-data.
ืฉืืื ืงืืืฅ ืื ืืื ืง Google Drive, ืืงืื ืืืืืืช job_id ืืขืงืืื. ืืขืืืื ืจืฅ ืืจืงืข.
ืฉืืืช (multipart/form-data):
| ืฉืื | ืืืื | ืชืืืืจ |
|---|---|---|
file | * ืืื ืืืฉื ืืื | ืงืืืฅ ืืืืื/ืืืืื (mp3, mp4, m4a, wav, ืืืืณ). ืขื 10GB. |
drive_url | * ืืื ืืืฉื ืืื | ืืื ืง Google Drive ืฆืืืืจื (Anyone with the link). ืืฉืชืืฉ ืืฉ ืืื ืงืืืฅ ืืงืืื. |
filename | ืืืคืฆืืื ืื | ืฉื ืชืฆืืื. ืื ืืฉืชืืฉืื ื-drive_url ืืื ืฆืืื โ ืืืงืจื input.mp4. |
project_title | ืืืคืฆืืื ืื | ืืืชืจืช ืืคืจืง. ืื ืจืืง โ Claude ืืฆืืข ืืืชืจืืช. |
production_notes | ืืืคืฆืืื ืื | ืคืชืงื ืืคืงื (ืืงืกื ืืืคืฉื). ืืืคืขื ื ืืชืื ืฉื ื: user_shorts + episode_edit. |
edit_level | ืืืคืฆืืื ืื | ืขืจืืื ืืืืืืืืช ืฉื ืืคืจืง ืืฉืืื ืขืจืืืืช ืืื ืืืช ืืคืชืงืื: none (ืืจืืจืช ืืืื ื-API), basic, partial, aggressive. ืืคืืง auto_edit (ืืกืจืืช+ืกืืืื) ื-episode_edit (ืืงืืขืื ืฉื ืฉืืจืื). |
folder_id | ืืืคืฆืืื ืื | ID ืฉื ืคืืืงืืกื ืงืืื ืืฉืืื ืืืื (ืืืื ืืืฉื). |
assignee_email | ืืืคืฆืืื ืื | ืืืืืื ืื ืฉืืืจืื ืขื ืืคืจืง (ืืืืฆืจ ืกืืืืก "ืืืฉ" ืขื ืืฉื ืฉืื). |
amount | ืืืคืฆืืื ืื | ืกืืื ืจืืฉืื ื ืืืืื (ILS) โ ืืืฆืจ billing entry. |
existing_project_id | ืืืคืฆืืื ืื | ID ืฉื ืคืจืง ืงืืื ืฉืขืื ืื ืชืืืื โ ืืขืืื ืืืชื ืืืงืื ืืืฆืืจ ืืืฉ. |
transcription_model | ืืืคืฆืืื ืื | ืืจืืจืช ืืืื elevenlabs. |
curl -X POST -H "Authorization: Bearer mims_..." \ -F "file=@episode.mp3" \ -F "project_title=ืคืจืง 47" \ -F "folder_id=3" \ -F "production_notes=ืืงืฆืจ ืืช ืืคืชืื" \ https://studio.mims.co.il/api/v1/episodes/process
ืชืืืื (ืืืืืืช):
{ "job_id": "5cf36eae-fc9e-482c-9426-ef913519b03c" }
ืื ืขื Google Drive:
curl -X POST -H "Authorization: Bearer mims_..." \ -F "drive_url=https://drive.google.com/file/d/ABC123/view" \ -F "filename=episode.mp4" \ -F "project_title=ืคืจืง 47" \ https://studio.mims.co.il/api/v1/episodes/process
polling ืืกืืืืก. ืขืฉื ืงืจืืื ืื 5โ10 ืฉื ืืืช ืขื ืฉืืกืืืืก done ืื error.
ื ืืชื ืืจืืืช ืจืง jobs ืฉืฉืื (ืืฉืชืืฉืื ืืืจืื ืืงืืื 404).
curl -H "Authorization: Bearer mims_..." \ https://studio.mims.co.il/api/v1/episodes/jobs/5cf36eae-fc9e-482c-9426-ef913519b03c
ืกืืืืกืื ืืคืฉืจืืื: queued โ transcribing โ analyzing โ uploading โ done (ืื error).
ืชืืืื ืืืื ืขืืืื:
{ "status": "analyzing", "status_text": "ืงืืื ืื ืชื ืืช ืืคืจืง..." }
ืชืืืื ืืกืืื (status=done):
{
"status": "done",
"status_text": "...",
"result": {
"project_id": 123,
"title": "...",
"filename": "episode.mp3",
"transcript": "ืืงืกื ืืื...",
"full_srt": "1\n00:00:00,000 --> ...",
"words": [{"word":"ืฉืืื","start":0.0,"end":0.4}, ...],
"titles": ["...", "...", "..."],
"description": "...",
"chapters": [{"title":"ืคืชืื","start":0,"end":120}, ...],
"shorts": [{"title":"...","start":...,"end":...,"reason":"..."}],
"shorts_srts": ["...", ...],
"social_posts": {"instagram":"...","linkedin":"...","x":"..."},
"quotes": ["...", "..."],
"content_warnings": "...",
"episode_edit": [{"number":1,"in_time":"00:00:00","out_time":"00:12:30","description":""}],
"auto_edit": {"level":"basic","summary":"ืืืกืจื ืฉืชืืงืืช ืืืืืื ืืืืชืจืืช, ~3 ืืงืณ","removals":[{"in_time":"00:04:10","out_time":"00:04:25","reason":"ืฉืชืืงื ืืจืืื"}]}
}
}
episode_edit/auto_edit ืืืคืืขืื ืจืง ืืฉืฉืืืช edit_level (ืื production_notes ืขื ืขืฆืืจืืช). user_shorts ืืืคืืข ืืฉืฉืืืช production_notes.
ืฉืืืืืช: 400 โ ืืกืจ ืงืืืฅ ืื ืืื ืง ืชืงืื; 401 โ ืืคืชื ืื ืชืงืื; 403 โ ืืื ืืืฉื ื-folder/project; 404 โ project ืื ืงืืื ืื ืฉืืื ืืืจ ืชืืืื.
ืืื ืืขืืฉืื, ื-GET endpoints ืืงืืืืื ืืืืืื ืื:
| Endpoint | ืฉืืืช ืืืฉืื |
|---|---|
/api/v1/projects (list) | billing_entries |
/api/v1/projects/{{id}} | billing_entries, tasks, episode_edit, auto_edit, user_shorts, user_shorts_srts, shorts_srts, production_notes_input, production_notes_text, cuts |
/api/v1/podcasts (list) | billing_entries |
/api/v1/podcasts/{{id}} | billing_entries, tasks |
ืืฉืื billing ืืืฉื (billing_json) ืขืืืื ืืืืืจ ืืชืืืืืช ืืืืืจ.
MIMS Podcast Tool ยท studio.mims.co.il