Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Invoice (0.53 sec)

  1. docs/en/docs/advanced/openapi-callbacks.md

    Let's see all this with an example.
    
    Imagine you develop an app that allows creating invoices.
    
    These invoices will have an `id`, `title` (optional), `customer`, and `total`.
    
    The user of your API (an external developer) will create an invoice in your API with a POST request.
    
    Then your API will (let's imagine):
    
    * Send the invoice to some customer of the external developer.
    * Collect the money.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/openapi-callbacks.md

    Es kรถnnten nur eine oder zwei Codezeilen sein, wie zum Beispiel:
    
    ```Python
    callback_url = "https://example.com/api/v1/invoices/events/"
    httpx.post(callback_url, json={"description": "Invoice paid", "paid": True})
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:17:23 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  3. docs/em/docs/advanced/openapi-callbacks.md

    ## ๐Ÿ”ฌ โฒ
    
    โ˜‘ โฒ ๐Ÿ“Ÿ ๐Ÿ”œ ๐Ÿช€ ๐Ÿ™‡ ๐Ÿ”› ๐Ÿ‘† ๐Ÿ‘ ๐Ÿ› ๏ธ ๐Ÿ“ฑ.
    
    & โšซ๏ธ ๐Ÿ”œ ๐ŸŽฒ ๐Ÿช€ ๐Ÿ“š โšช๏ธโžก๏ธ 1๏ธโƒฃ ๐Ÿ“ฑ โญ.
    
    โšซ๏ธ ๐Ÿ’ช 1๏ธโƒฃ โš–๏ธ 2๏ธโƒฃ โธ ๐Ÿ“Ÿ, ๐Ÿ’–:
    
    ```Python
    callback_url = "https://example.com/api/v1/invoices/events/"
    httpx.post(callback_url, json={"description": "Invoice paid", "paid": True})
    ```
    
    โœ‹๏ธ ๐ŸŽฒ ๐Ÿ† โš  ๐Ÿ• โฒ โš’ ๐Ÿ’ญ ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ› ๏ธ ๐Ÿ‘ฉโ€๐Ÿ’ป (๐Ÿ”ข ๐Ÿ‘ฉโ€๐Ÿ’ป) ๐Ÿ› ๏ธ *๐Ÿ”ข ๐Ÿ› ๏ธ* โ˜‘, ๐Ÿ›„ ๐Ÿ’ฝ ๐Ÿ‘ˆ *๐Ÿ‘† ๐Ÿ› ๏ธ* ๐Ÿ”œ ๐Ÿ“จ ๐Ÿ“จ ๐Ÿ’ช โฒ, โ™’๏ธ.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  4. docs/zh/docs/advanced/openapi-callbacks.md

    ๆญคๅค„ๅ”ฏไธ€ๆฏ”่พƒๆ–ฐ็š„ๅ†…ๅฎนๆ˜ฏ*่ทฏๅพ„ๆ“ไฝœ่ฃ…้ฅฐๅ™จ*ไธญ็š„ `callbacks=invoices_callback_router.routes` ๅ‚ๆ•ฐ๏ผŒไธ‹ๆ–‡ไป‹็ปใ€‚
    
    ## ๅญ˜ๆกฃๅ›ž่ฐƒ
    
    ๅฎž้™…็š„ๅ›ž่ฐƒไปฃ็ ้ซ˜ๅบฆไพ่ต–ไบŽๆ‚จ่‡ชๅทฑ็š„ API ๅบ”็”จใ€‚
    
    ๅนถไธ”ๅฏ่ƒฝๆฏไธชๅบ”็”จ้ƒฝๅ„ไธ็›ธๅŒใ€‚
    
    ๅ›ž่ฐƒไปฃ็ ๅฏ่ƒฝๅชๆœ‰ไธ€ไธค่กŒ๏ผŒๆฏ”ๅฆ‚๏ผš
    
    ```Python
    callback_url = "https://example.com/api/v1/invoices/events/"
    requests.post(callback_url, json={"description": "Invoice paid", "paid": True})
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 22:46:28 GMT 2024
    - 6.6K bytes
    - Viewed (0)
Back to top