Documentation de service Web / Catégories / Connexion/Services de partage / Récupérer les demandes de connexion en attente

Récupérer les demandes de connexion en attente

Mise à jour le 23 août 2020

Description

Ce service Web affiche une liste de demandes de connexion de clients en attente. La connexion au client doit être préalablement établie avant de pouvoir partager des propriétés et des compteurs.

Version

22.0

Méthode HTTP

GET

URL de la ressource

/partager/compteur/en attente/liste?page=(numéro de page)

En-tête

Nom du champ Valeur Commentaires
Autorisation Basic authentifiant

Autorisation requise

Oui

Paramètres

Nom du paramètre Description
page Indique l'ensemble de résultats, défini par numéro de page, à récupérer. Ce paramètre n'est généralement pas inclus dans l'appel initial, et est fourni si les résultats sont paginés.

Schémas XML

Demande/réponse Nom de schéma
Demande Aucun
Réponse autorisation.xsd

Exemple de demande

L'exemple suivant montre la récupération de la liste de demandes de connexion en attente.

GET  /connect/account/pending/list

Exemple de réponse

L'exemple suivant affiche la liste de demandes de connexion en attente.

<?xml version="1.0" encoding="UTF-8"?>
<pendingList>
     <account>
          <accountId>68023</accountId>
          <username>JaneDoeAcmeCorp</username>
          <customFieldList>
               <customField name="Customer Number">D987DDD</customField>
               <customField name="Group Code">G81113</customField>
          </customFieldList>
          <accountInfo>
               <firstName>Jane</firstName>
               <lastName>Doe</lastName>
               <address address1="2343 Main Street" city="Arlington" state="VA" postalCode="22201" country="US"/>
               <email>jane_doe@acme.com</email>
               <organization>ACME Corp</organization>
               <jobTitle>Building Adminstrator</jobTitle>
               <phone>800-555-1515</phone>
          </accountInfo>
          <connectionAudit>
               <createdBy>acme_jane</createdBy>
               <createdByAccountId>68023</createdByAccountId>
               <createdDate>2014-12-04T11:29:54.000-05:00</createdDate>
               <lastUpdatedBy>acme_jane</lastUpdatedBy>
               <lastUpdatedByAccountId>68023</lastUpdatedByAccountId>
               <lastUpdatedDate>2014-12-04T16:29:54.000-05:00</lastUpdatedDate>
          </connectionAudit>
     </account>
     <account>
          <accountId>3243</accountId>
          <username>JoeSmithAcmeCorp</username>
          <customFieldList>
               <customField name="Customer Number">X868867D</customField>
               <customField name="Group Code">G93328788</customField>
          </customFieldList>
          <accountInfo>
               <firstName>Joe</firstName>
               <lastName>Smith</lastName>
               <address address1="3432 Times Square Blvd" city="New York City" postalCode="10453" state="NY" country="US"/>
               <email>joe_smith@sample.com</email>
               <organization>Sample Company</organization>
               <jobTitle>Building Adminstrator</jobTitle>
               <phone>800-555-1515</phone>
          </accountInfo>
          <connectionAudit>
               <createdBy>acme_smith</createdBy>
               <createdByAccountId>3243</createdByAccountId>
               <createdDate>2014-12-03T11:29:54.000-05:00</createdDate>
               <lastUpdatedBy>acme_smith</lastUpdatedBy>
               <lastUpdatedByAccountId>3243</lastUpdatedByAccountId>
               <lastUpdatedDate>2014-12-03T16:29:54.000-05:00</lastUpdatedDate>
          </connectionAudit>
     </account>
     <!-- assume more records -->
     <links>
          <link linkDescription="next page" link="/connect/account/pending/list?page=2" httpMethod="GET"/>
     </links>
</pendingList>
ENVIRONNEMENT D'ESSAI