Subscriber Operations

Services to retrieve information about subscribers:

List all subscribers

The recipient address type may vary depending on the service configuration. The operations team decides how the service will access BiP users before integration. Default access is hashed numbers. For MSISDN access, contact the bipussu super admin.

Format

Send the service username/password in the Header using Basic Authentication.

https://tims.turkcell.com.tr/tes/rest/spi/sendmsgserv

Request
FieldValueDescription
*txnidstringRequest id value
Response
FieldValueDescription
*txnidstringRequest id value
*resultcodestringResponse code. 0 for success; otherwise see Error Codes.
*listlistUser list

https://tims.turkcell.com.tr/tes/rest/spi/listcontacts

Example: Encrypted numbers returned in the response.

Request
{  
    "txnid": "243"  
}   
Response
{  
    "resultcode":0,  
    "list":[  
        {  
            "type":0,  
            "address":"nbVj/RZxGvcn/gdEYJ0MSg=="  
        },  
        {  
            "type":0,  
            "address":"nxcEoZ0ED1pmBf/SHnlI0g=="  
        },  
        {  
            "type":0,  
            "address":"DQxvJoHFb7kfJcv6BULl4g=="  
        }  
    ]  
}  

Example: Plain numbers returned in the response.

Request
{  
    "txnid": "243"  
}   
Response
{  
    "resultcode":0,  
    "list":[  
        {  
            "type":2,  
            "address":"9053XXXXXXXX"  
        },  
        {  
            "type":2,  
            "address":"9053YYYYYYYY"  
        },  
        {  
            "type":2,  
            "address":"9053ZZZZZZZZ"  
        }  
    ]  
}  

View service follower count

Request
{  
   "txnid": "1245"  
}  
Response
{  
  "resultcode": 0,  
  "followercount": 25  
}