*** id: 545c97ce-cd5d-4494-98ef-916aeb072875 title: Reject sidebar-title: Reject excerpt: '' slug: /cxml/reference/fax/reject position: 1 max-toc-depth: 3 ---------------- The `` verb tells SignalWire to reject an incoming fax, which results in a status of `canceled`. ## Verb attributes The `` verb does not have any attributes that modify its behavior. ## Examples ### Fax reject ```xml ``` ```javascript title="Node.js" const { RestClient } = require("@signalwire/compatibility-api"); const response = new RestClient.LaML.FaxResponse(); response.reject(); console.log(response.toString()); ``` ```csharp using Twilio.TwiML; using System; class Example { static void Main() { var response = new FaxResponse(); response.Reject(); Console.WriteLine(response.ToString());; } } ``` ```python from signalwire.fax_response import FaxResponse, Reject response = FaxResponse() response.reject() print(response) ``` ```ruby require 'signalwire/sdk' response = Signalwire::Sdk::FaxResponse.new do |response| response.reject end puts response.to_s ``` SignalWire will reject the incoming fax.