Query to get the Port Pending TFNs for multiple Owner Tspids
This API can be used to retrieve the list of port-pending TFNs, for a list of owner Tspids.
The following is an example REST/JSON query request to get the details of a list of port-pending
TFNs:
POST /api/v2/get-sr-pending-tfns HTTP/1.0
Content-Type: application/json
Content-Length: <num>
{
"id":"user",
"pwd":"password",
"page":"1",
"startTimestamp":"04/22/2015 01:45:00 GMT",//start time
"endTimestamp":"04/23/2015 01:45:00 GMT",//end time
"ownerTspids":[
"SRID1",
"SRID2"
]
}
// The HTTP header is omitted for brevity.
{
"url": "api/v2/get-sr-pending-tfns",
"totalRecords":"624953", // total TFNs matching request criteria
"totalPages":"63", // total number of pages
"currentPage":"1", // current page
"maxRecordsPerPage":"10000",
"startTimestamp":"04/22/2015 01:45:00 GMT",//timestamp in the request
"endTimestamp":"04/23/2015 01:45:00 GMT",//timestamp in the request
"pendingList":
[ //start of the list
{ // start of 1st entry
"tfn":"8007001212",
"date":"04/21/2015 08:03:56 GMT",
"sr":"ServiceRegistrarName", // Owner SR
"businessName":"Subscriber Business Name",
"contactName":"Subscriber Contact Name", // A person
"contactPhone":"Subscriber Contact Phone",
"contactEmail":"Subscriber Contact Email",
"tspid":"SRID1"
} // end of 1st entry
// The above example is a single entry in the pendingList.
// More may be present, each in a comma-separated
// curly brace stanza.
], // end of the pendingList
"unAuthorizedOwnerTspidList":
[
"SRID2"
]
}
Failure responses are discussed in the Error section.
The following table enumerates the possible values for the status field on a successful request.
The following table describes the fields in the response.