2016-04-27 18 views
0

REST APIでOAuthを使用してSugarCRMのデータを呼び出す必要があります。 私はこれを使用していますlinksugar crmへのAPIコール

+0

あなたは何を試していますか? – sAcH

答えて

0

他のモジュールのデータが必要な場合は、このようなjsコ​​ントローラでAPIを呼び出します。

app.api.call('GET', app.api.buildURL('Accounts/' + this.model.attributes.accounts_lab_coc_1accounts_ida), null, { 
      success: _.bind(function (response) { 
       //response comes back from your api, maybe you want to set some value on your model or alter a response? 
       console.log(response); 


        } 
       }, this); 

      }, this) 
     }); 

    }, 
+0

私はsugarcrmオンラインで残りのAPIを使用してデータを取得しようとしていますが、何も応答が得られません – rajju

関連する問題