salesforce-marketing-cloud

Calling Marketing Cloud APIs from C# via FuelSDK

孤街浪徒 提交于 2021-02-11 15:37:38
问题 In am trying to get an access token to call Salesforce Marketing Api through FuelSDK the code is: NameValueCollection parameters = new NameValueCollection(); parameters.Add("clientId", "myclientidvalugoeshere"); parameters.Add("clientSecret", "myclientsecretvaluegoeshere"); var client = new ETClient(parameters); ETFolder folder = new ETFolder(); folder.AuthStub = client; var response = folder.Get(); return response.Message; But it's returning: System.Net.WebException : The remote server

Calling Marketing Cloud APIs from C# via FuelSDK

a 夏天 提交于 2021-02-11 15:34:24
问题 In am trying to get an access token to call Salesforce Marketing Api through FuelSDK the code is: NameValueCollection parameters = new NameValueCollection(); parameters.Add("clientId", "myclientidvalugoeshere"); parameters.Add("clientSecret", "myclientsecretvaluegoeshere"); var client = new ETClient(parameters); ETFolder folder = new ETFolder(); folder.AuthStub = client; var response = folder.Get(); return response.Message; But it's returning: System.Net.WebException : The remote server

Is there any SOAP object available to pull journey information from marketing cloud?

半城伤御伤魂 提交于 2019-12-13 04:18:18
问题 I am trying to download the journey information from marketing cloud and understand how it's related to a _Job dataview. Is there any Object that directly pulls all journey related information using SOAP API calls? I have downloaded the _Journey dataview by querying it to a data extension, but I can not figure out how it's related to a _Job dataview. How can I connect the Journey information to the _Job dataview? Please help. Thanks in advance. 来源: https://stackoverflow.com/questions/54815433