Retrieve specific sender with sender_id

This method allow you to retrieves one of your sender.

GET

/sender/:client_sender_id

Examples


        GET /sender/:client_sender_id HTTP/1.1
Host: api.smsfactor.com
Authorization: Bearer your.token
Accept: application/json
                  
                

Result Format


{
  "status": 1,
  "message": "OK",
  "sender":{
      "client_sender_id": "831",
      "sender": "EXAMPLE",
      "country_code": "FR",
      "company_name": "api.smsfactor.com",
      "client_country_code": "FR",
      "vat": "FR123456789",
      "fiscal_code": "FR123456789",
      "complete_address": "1 rue de la paix",
      "escalation_contact": "email@domain.com",
      "general_contact": "email@domain.com",
      "website": "www.domain.com",
      "type_of_service": "services",
      "phone_number": "33612345678",
      "message_type": "alert"
      "created_at": "2022-09-14 16:32:51",
      "updated_at": null
  }
}
                  
                

<response>
  <status>1</status>
  <message>OK</message>
  <senders>
      <client_sender_id>831</client_sender_id>
      <sender>t</sender>
      <country_code>t</country_code>
      <status>0</status>
      <company_name>t</company_name>
      <client_country_code>FR</client_country_code>
      <VAT></VAT>
      <fiscal_code></fiscal_code>
      <complete_address></complete_address>
      <escalation_contact></escalation_contact>
      <general_contact>t</general_contact>
      <website></website>
      <type_of_service></type_of_service>
      <phone_number>t</phone_number>
      <created_at>2022-09-14 16:32:51</created_at>
      <updated_at></updated_at>
  </senders>
</response>