グラフ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.

    読み取り

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

    Graph API Explorer
    GET /v21.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
    }];
    グラフAPIを使用する方法については、グラフAPIの使用ガイドをご覧ください。

    パラメーター

    パラメーター説明
    code
    string

    QR code or short link ID.

    項目

    このエッジからの読み込むではJSONフォーマットの結果が返されます:

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

    data

    WhatsAppBusinessMessageQRDLノードの一覧です。

    paging

    ページネ―ションについて詳しくは、グラフAPIガイドをご覧ください。

    エラーコード

    エラー詳細
    100Invalid parameter

    作成

    message_qrdlsのエッジにPOSTリクエストを以下のパスで送信できます:
    このエッジにPOSTする場合、a WhatsAppBusinessMessageQRDLが作成されます。

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

    パラメーター

    パラメーター説明
    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.

    必須

    戻り値の型

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

    エラーコード

    エラー詳細
    300Edit failure
    100Invalid parameter
    200Permissions error

    更新中…

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


    このエンドポイントではこの操作を実行できません。

    削除中です

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

    パラメーター

    パラメーター説明
    code
    string

    ID of the QR code or short link.

    必須

    戻り値の型

    Struct {
    success: bool,
    }

    エラーコード

    エラー詳細
    100Invalid parameter