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/{Sid}

      GET
      /v1/Faxes/{Sid}
      Fetch a specific fax.
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://fax.twilio.com/v1/Faxes/'
      Response Response Example
      {
          "account_sid": "stringstringstringstringstringstri",
          "api_version": "string",
          "date_created": "2019-08-24T14:15:22Z",
          "date_updated": "2019-08-24T14:15:22Z",
          "direction": "inbound",
          "duration": 0,
          "from": "string",
          "links": {},
          "media_sid": "stringstringstringstringstringstri",
          "media_url": "string",
          "num_pages": 0,
          "price": 0,
          "price_unit": "string",
          "quality": "standard",
          "sid": "stringstringstringstringstringstri",
          "status": "queued",
          "to": "string",
          "url": "http://example.com"
      }

      Request

      Path Params
      Sid
      string 
      required
      The Twilio-provided string that uniquely identifies the Fax resource to fetch.

      Responses

      🟢200OK
      application/json
      Body
      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}$
      api_version
      string  | null 
      optional
      The API version used to transmit the fax
      date_created
      string <date-time> | null 
      optional
      The ISO 8601 formatted date and time in GMT when the resource was created
      date_updated
      string <date-time> | null 
      optional
      The ISO 8601 formatted date and time in GMT when the resource was last updated
      direction
      enum<string>  | enum<null> 
      optional
      The direction of the fax
      Allowed values:
      inboundoutbound
      duration
      integer  | null 
      optional
      The time it took to transmit the fax
      from
      string  | null 
      optional
      The number the fax was sent from
      links
      object  | null 
      optional
      The URLs of the fax's related resources
      media_sid
      string  | null 
      optional
      The SID of the FaxMedia resource that is associated with the Fax
      >= 34 characters<= 34 characters
      Match pattern:
      ^ME[0-9a-fA-F]{32}$
      media_url
      string  | null 
      optional
      The Twilio-hosted URL that can be used to download fax media
      num_pages
      integer  | null 
      optional
      The number of pages contained in the fax document
      price
      number  | null 
      optional
      The fax transmission price
      price_unit
      string <currency> | null 
      optional
      The ISO 4217 currency used for billing
      quality
      enum<string>  | enum<null> 
      optional
      The quality of the fax
      Allowed values:
      standardfinesuperfine
      sid
      string  | null 
      optional
      The unique string that identifies the resource
      >= 34 characters<= 34 characters
      Match pattern:
      ^FX[0-9a-fA-F]{32}$
      status
      enum<string>  | enum<null> 
      optional
      The status of the fax
      Allowed values:
      queuedprocessingsendingdeliveredreceivingreceivedno-answerbusyfailedcanceled
      to
      string  | null 
      optional
      The phone number that received the fax
      url
      string <uri> | null 
      optional
      The absolute URL of the fax resource
      Previous
      /v1/Faxes/{Sid}
      Built with