Add contacts to the NPAI list

POST

/npai

Body Parameters

value
required
The recipient's number
info1 Information 1
info2 Information 2
info3 Information 3
info4 Information 4

Examples


POST /npai HTTP/1.1
Host: api.smsup.ch
Authorization: Bearer your.token
Accept: application/json

{
  "npai": {
    "contacts": {
      "gsm": [
        {
          "value": "41781234567",
          "info1": "Hiroo",
          "info2": "Onoda"
        },
        {
          "value": "41781234566",
          "info1": "Grace",
          "info2": "Hopper"
        },
        {
          "value": "41781234565",
          "info1": "Hedy",
          "info2": "Lamarr",
          "info3": "Extase",
          "info4": "1933"
        }
      ]
    }
  }
}
          
        

POST /npai HTTP/1.1
Host: api.smsup.ch
Authorization: Bearer your.token
Accept: application/xml

<?xml version="1.0" encoding="UTF-8" ?>
<list>
  <contacts>
    <gsm info1="Hiroo" info2="Onoda">41781234567</gsm>
    <gsm info1="Grace" info2="Hopper">41781234566</gsm>
    <gsm info1="Hedy" info2="Lamarr" info3="Extase" info4="1933">41781234565</gsm>
  </contacts>
</list>
        
      

$response = \SMSFactor\ContactList::addToNpai([
    'npai' => [
      'contacts' => [
        'gsm' => [
          [
            'value' => '41781234567',
            'info1' => 'Hiroo',
            'info2' => 'Onoda'
          ],
          [
            'value' => '41781234566',
            'info1' => 'Grace',
            'info2' => 'Hopper'
          ],
          [
            'value' => '41781234565',
            'info1' => 'Hedy',
            'info2' => 'Lamarr',
            'info3' => 'Extase',
            'info4' => '1933'
          ]
        ]
      ]
    ]
]);
        
      

Result Format


{
  "status": 1,
  "message": "OK",
  "added_contacts": 3
}
          
        

<?xml version="1.0" encoding="UTF-8" ?>
<response>
  <status>1</status>
  <message>OK</message>
  <added_contacts>3</added_contacts>
</response>