Get sending profile

Retrieves the outbound sending user’s profile.

GET /outbound/sendingprofile

Arguments

None

Response

If successful, the following data is returned:

Property Type Description
EnablePostponed Main Switch: [“True”, “False”]
PCI Switch: [“False”] (Only “False”)
Fax sending delay property
EnableLists Main Switch: [“True”, “False”]
PCI Switch: [“False”] (Only “False”)
Fax batch sending property
NumberOfAttempts Default value = 2
Optional values: [1,2,3,4,5,6,7,8,9,10]
The number of attempts for sending the fax
FaxCSID Default value = none
Optional values: []
Fax sender identifier
FeedbackAddress Default value = none
Optional values: []
URL to retrieve feedbacks
PageOrientation Default value = “Portrait”
Optional values: [“Portrait”, “Landscape”]
Fax page orientation property
PageSize Default value = “A4”
Optional values: [“A4”, ”Legal”, ” Letter”, ”B4”]
Fax page size property
RenderingOptimization Default value = “GrayScale”
Optional values: [“GrayScale”, ”BW”]
Fax page rendering optimization property
Resolution Default value = “Fine”
Optional values: [“Fine”, “Standard”]
Fax page rendering quality property

Sample Calls


GET /outbound/sendingprofile HTTP/1.1 
Host: rest.interfax.net 
Authorization:  
Basic - generated from base64 (encode) username and password. 
Bearer - generated from accounts/token method. 

Sample response (prettified for display here)


{
    "EndPointURL": "https://rest.interfax.net", 
    "EnablePostponed": true, 
    "EnableLists": true, 
    "AdvancePageSetting": 
    [
     {"Name": "NumberOfAttampts", 
          "Value": 1, 
          "OptionalValues": "[1,2,3,4,5,6,7,8,9,10]"},
         {"Name": "FaxCSID", 
          "Value": "ma neheya", 
          "OptionalValues": "[]"}, 
         {"Name": "FeedbackAddress", 
          "Value": "https://webcallback.interfax.net/WebForm1.aspx", 
          "OptionalValues": "[]"}, 
         {"Name": "PageOrientation", 
          "Value": "Portrait", 
          "OptionalValues": "['Landscape', 'Portrait']"}, 
         {"Name": "PageSize", 
          "Value": "Letter", 
          "OptionalValues": "['A4', 'B4', 'Legal', 'Letter']"}, 
         {"Name": "RenderingOptimization", 
          "Value": "Fine", 
          "OptionalValues": "['Fine', 'Standard']"}, 
         {"Name": "Resolution", 
          "Value": "Standard", 
          "OptionalValues": "['Fine', 'Standard']"}
    ]
}