For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Cloudflare
    • GETpayload example
    • POSThttps://social-media-posting-dev.deao.workers.dev/post
      • GET9. Get Stripe Main Balance - https://api.stripe.com/v1/balance
      • POST6. Create Local Payout - https://api.stripe.com/v1/payouts
      • POST4. Transfer USD Funds - https://api.stripe.com/v1/transfers
      • POST7. Update Journal Entry (MISC) (Posted) - https://m.musicca.st/json/2/account.move/write
      • POST3. Create Journal Entry (MISC) - https://m.musicca.st/json/2/account.move/create
      • POST1. Get Customer ID - Stripe Connected Account ID - https://m.musicca.st/json/2/res.partner/search_read Copy
      • POST2. Search Existing Journal Entry - https://m.musicca.st/json/2/account.move/search_read
      • POST8. Send Customer Journal Entry Notification... Status - https://m.musicca.st/json/2/account.move/message_post
      • POST10. Create Admin 'Entry' Error Notification - https://m.musicca.st/json/2/account.move/message_post
LogoLogo
CloudflareRoyalties Payout Workflow

  1. Create Journal Entry (MISC) - https://m.musicca.st/json/2/account.move/create

||View as Markdown|
POST
/json/2/account.move/create
POST
/json/2/account.move/create
$curl -X POST https://graph.facebook.com/json/2/account.move/create \
> -H "Content-Type: application/json" \
> -d "{
> \"vals_list\": {
> \"partner_id\": {{id}}, // id of the res.partner value from the previous odoo api call/step1
> \"ref\": \"In review: Royalty Payout Request: {{reference}} ({{date}})\", //Reference and date value from incoming json
> \"line_ids\": [
> [
> 0,
> 0,
> {
> \"name\": \"Royalty Payout Request: {{reference}} ({{date}})\", //Reference and date value from incoming json
> \"debit\": {{usd_amount}}, // Amount value from incoming json. Use this format: 5223.8 (This value must in USD)
> \"account_id\": 168 // Default: 210300 Royalties Payable (Current Liabilities)
> }
> ],
> [
> 0,
> 0,
> {
> \"name\": \"Royalty Payout Request: {{reference}} ({{date}})\", //Reference and date value from incoming json
> \"credit\": {{usd_amount}}, // Amount value from incoming json. Use this format: 5223.8 (This value must in USD)
> \"account_id\": 172 // Default: 101407 Stripe (DEAO) (Bank and Cash)
> }
> ]
> ]
> }
>}"
200Successful
1{}
Was this page helpful?
Previous

7. Update Journal Entry (MISC) (Posted) - https://m.musicca.st/json/2/account.move/write

Next

1. Get Customer ID - Stripe Connected Account ID - https://m.musicca.st/json/2/res.partner/search_read Copy

Built with

Request

This endpoint expects a string.

Response

Successful response
  1. Update Journal Entry (MISC) (Posted) - https://m.musicca.st/json/2/account.move/write
  1. Get Customer ID - Stripe Connected Account ID - https://m.musicca.st/json/2/res.partner/search_read Copy