Twilio - Fax
    Twilio - Fax
    • /v1/Faxes
      GET
    • /v1/Faxes/{FaxSid}/Media
      GET
    • /v1/Faxes/{FaxSid}/Media/{Sid}
      DELETE
    • /v1/Faxes/{FaxSid}/Media/{Sid}
      GET
    • /v1/Faxes/{Sid}
      DELETE
    • /v1/Faxes/{Sid}
      GET

      /v1/Faxes/{FaxSid}/Media

      GET
      /v1/Faxes/{FaxSid}/Media
      Retrieve a list of all fax media instances for the specified fax.
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://fax.twilio.com/v1/Faxes//Media'
      Response Response Example
      {
          "media": [
              {
                  "account_sid": "stringstringstringstringstringstri",
                  "content_type": "string",
                  "date_created": "2019-08-24T14:15:22Z",
                  "date_updated": "2019-08-24T14:15:22Z",
                  "fax_sid": "stringstringstringstringstringstri",
                  "sid": "stringstringstringstringstringstri",
                  "url": "http://example.com"
              }
          ],
          "meta": {
              "first_page_url": "http://example.com",
              "key": "string",
              "next_page_url": "http://example.com",
              "page": 0,
              "page_size": 0,
              "previous_page_url": "http://example.com",
              "url": "http://example.com"
          }
      }

      Request

      Path Params
      FaxSid
      string 
      required
      The SID of the fax with the FaxMedia resources to read.
      Query Params
      PageSize
      integer 
      optional
      How many resources to return in each list page. The default is 50, and the maximum is 1000.

      Responses

      🟢200OK
      application/json
      Body
      media
      array[object (fax.v1.fax.fax_media) {7}] 
      optional
      account_sid
      string  | null 
      optional
      The SID of the Account that created the resource
      >= 34 characters<= 34 characters
      Match pattern:
      ^AC[0-9a-fA-F]{32}$
      content_type
      string  | null 
      optional
      The content type of the stored fax media
      date_created
      string <date-time> | null 
      optional
      The ISO 8601 date and time in GMT when the resource was created
      date_updated
      string <date-time> | null 
      optional
      The ISO 8601 date and time in GMT when the resource was last updated
      fax_sid
      string  | null 
      optional
      The SID of the fax the FaxMedia resource is associated with
      >= 34 characters<= 34 characters
      Match pattern:
      ^FX[0-9a-fA-F]{32}$
      sid
      string  | null 
      optional
      The unique string that identifies the resource
      >= 34 characters<= 34 characters
      Match pattern:
      ^ME[0-9a-fA-F]{32}$
      url
      string <uri> | null 
      optional
      The absolute URL of the FaxMedia resource
      meta
      object 
      optional
      first_page_url
      string <uri>
      optional
      key
      string 
      optional
      next_page_url
      string <uri>
      optional
      page
      integer 
      optional
      page_size
      integer 
      optional
      previous_page_url
      string <uri>
      optional
      url
      string <uri>
      optional
      Previous
      /v1/Faxes
      Next
      /v1/Faxes/{FaxSid}/Media/{Sid}
      Built with