Skip to main content

Deletes a Fax Application

DELETE 
/fax_applications/:id

Permanently deletes a Fax Application. Deletion may be prevented if the application is in use by phone numbers.

Request

Path Parameters

    id int64required

    Identifies the resource.

Responses

200: Successful response

400: Bad request, the request was unacceptable, often due to missing a required parameter.

401: Unauthorized

403: Unauthorized

404: Fax does not exist

Request samples


curl -L -X DELETE 'https://api.telnyx.com/v2/fax_applications/:id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": {
"id": "1293384261075731499",
"record_type": "fax_application",
"application_name": "fax-router",
"active": false,
"anchorsite_override": "Amsterdam, Netherlands",
"webhook_event_url": "https://example.com",
"webhook_event_failover_url": "https://failover.example.com",
"webhook_timeout_secs": 25,
"inbound": {
"channel_limit": 10,
"sip_subdomain": "example",
"sip_subdomain_receive_settings": "only_my_connections"
},
"outbound": {
"channel_limit": 10,
"outbound_voice_profile_id": "1293384261075731499"
},
"created_at": "2018-02-02T22:25:27.521Z",
"updated_at": "2018-02-02T22:25:27.521Z"
}
}