Versão Graph API

    Whats App Business Phone Number Message Qrdls

    Represents a collection of QR codes or short links on a WhatsApp Business Phone Number. See QR Codes.

    Leitura

    Get a list of QR codes or short links on a WhatsApp Business Phone Number.

    Exemplo

    Graph API Explorer
    GET /v19.0/{whats-app-business-phone-number-id}/message_qrdls HTTP/1.1
    Host: graph.facebook.com
    /* PHP SDK v5.0.0 */
    /* make the API call */
    try {
      // Returns a `Facebook\FacebookResponse` object
      $response = $fb->get(
        '/{whats-app-business-phone-number-id}/message_qrdls',
        '{access-token}'
      );
    } catch(Facebook\Exceptions\FacebookResponseException $e) {
      echo 'Graph returned an error: ' . $e->getMessage();
      exit;
    } catch(Facebook\Exceptions\FacebookSDKException $e) {
      echo 'Facebook SDK returned an error: ' . $e->getMessage();
      exit;
    }
    $graphNode = $response->getGraphNode();
    /* handle the result */
    /* make the API call */
    FB.api(
        "/{whats-app-business-phone-number-id}/message_qrdls",
        function (response) {
          if (response && !response.error) {
            /* handle the result */
          }
        }
    );
    /* make the API call */
    new GraphRequest(
        AccessToken.getCurrentAccessToken(),
        "/{whats-app-business-phone-number-id}/message_qrdls",
        null,
        HttpMethod.GET,
        new GraphRequest.Callback() {
            public void onCompleted(GraphResponse response) {
                /* handle the result */
            }
        }
    ).executeAsync();
    /* make the API call */
    FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                                   initWithGraphPath:@"/{whats-app-business-phone-number-id}/message_qrdls"
                                          parameters:params
                                          HTTPMethod:@"GET"];
    [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                          id result,
                                          NSError *error) {
        // Handle the result
    }];
    Se quiser saber como usar a Graph API, leia nosso guia sobre Como usar a Graph API.

    Parâmetros

    ParâmetroDescrição
    code
    string

    QR code or short link ID.

    Campos

    A leitura desta borda retornará um resultado formatado em JSON:

    { "data": [], "paging": {} }

    data

    Uma lista de nós WhatsAppBusinessMessageQRDL.

    paging

    Para saber mais detalhes sobre paginação, consulte o Guia da Graph API.

    Error Codes

    ErroDescrição
    100Invalid parameter

    Criando

    You can make a POST request to message_qrdls edge from the following paths:
    When posting to this edge, a WhatsAppBusinessMessageQRDL will be created.

    You can also use this endpoint to update an existing QR code or short link by including the code parameter in your request.

    Parâmetros

    ParâmetroDescrição
    code
    string

    ID of the QR code or short link to update. Omit if creating a QR code or short link.

    generate_qr_image
    enum {PNG, SVG}

    Indicates QR code or short link image format.

    prefilled_message
    string

    Text that will appear in a new WhatsApp message when the customer triggers the QR code or short link.

    Obrigatório

    Return Type

    Struct {
    code: string,
    prefilled_message: string,
    deep_link_url: uri,
    qr_image_url: uri,
    }

    Error Codes

    ErroDescrição
    100Invalid parameter
    200Permissions error
    300Edit failure

    Atualizando

    See Creating to update an existing QR code or short link.


    Não é possível executar esta operação neste ponto de extremidade.

    Excluindo

    You can dissociate a WhatsAppBusinessMessageQRDL from a WhatsAppBusinessPhoneNumber by making a DELETE request to /{whats_app_business_phone_number_id}/message_qrdls.

    Parâmetros

    ParâmetroDescrição
    code
    string

    ID of the QR code or short link.

    Obrigatório

    Return Type

    Struct {
    success: bool,
    }

    Error Codes

    ErroDescrição
    100Invalid parameter