• Sage CRM: Error occurs with Rest API (sdata) DELETE request when Table Script is present

    We use the Sage CRM Rest API (sdata) to view and administrate companies, persons, email addresses and phone numbers. GET's work fine, but when we issue one of the other methods, eg. DELETE, an error occurs on the server. Also responses get very slow.…
  • SageCRM Rest API - what happens when Tomcat-session is created?

    When we submit a series of GET-requests to the SageCRM Rest API, the first request takes up a great amount of time: at least 500 ms. Using the SQL Server Profiler I discovered that (at the first GET-request) there are two SQL Select statements executed…
  • How do I use the REST API to connect a case to a workflow?

    Hello, I am trying to create a new case using the REST API, and I want to connect a particular workflow to it. Simply setting Case_WorkflowID to the suspected workflow id doesn't seem to work. Do I have to create a new workflow instance? If so, how…
  • Sage CRM 2020 R2- Connection to REST API

    Hi everyone. I am relatively new to SageCRM(2020 R2) & I have to use REST API for getting and posting cases. I am stuck on: =>To access a Sage CRM record data via the RESTful API, use the following URL format for your HTTP request: http://{server}/sdata…
  • REST API question on Case Reference Id

    Using the REST api i want to create a case. I cannot see how to get the reference id. I would expect it in the api http:// {{server}} /sdata/ {{install}} j/metadata/-/$service/getCustomObject?name= CaseDetailBox&SID= {{sid}} but its not set…
  • CORS policy

    Hi Devs, please assist with resolving Cors Policy errors. I'm retrying to send requests to a CRM server running on IIS but they are blocked by CORS Policy (HTTP not ok). I am able to send the requests from Postman but I can't from a web app. I am aware…
  • REST request fails for one entity - Cases

    I am making a request for cases and it consistently fails. Using Postman I send the request http://[ server] /sdata/crmj/sagecrm2/-/Cases and I get the following response { "$diagnoses" : [ { "$severity" : "Error" , "$applicationCode…
  • REST API - response does not match documentation

    Using postman for making a request to retrieve company details (but also tried this with a .Net HttpClient) The response from the Rest API does not match the response schema as described in the Documentation. More exactly, the related entities (Person…
  • SData 2.0 How to assign relation (for instance email to a person)

    Hi, I am able to list emails for a person like this: → curl -H "Authorization: Basic $AUTH" "http://192.168.22.198/sdata/crmj/sagecrm2/-/Person('1502')/Email" | jq { "$url": "http://msedgewin10/sdata/crmj/sagecrm2/-/Person('1502')/Email?startindex…
  • RESTful API with SID authentication does not work when updating (PATCH) a record

    When we use basic authentication to update (PATCH) a record it works fine. Snippet as follows (sorry if this is not clear, seems the insert "code" function does not work on sagecity.com) var RollUpValue = crm.fields('quot_rollup').value() var RollUpSQLUpdateValue…
  • REST-API - Search for the connected persons of an email-address

    Hi everyone, we are developing a Test-REST-Api-App to connect Zendesk-"Users" and CRM-Persons. Zendesk Users are identified Via the E-Mail-Adress and therefore need to Search for the Person with the current Mail-Adress. We are able to identify the "email…