Yes you can able to create open activites through REST API like a other normal record. Here is the JSON string to create open activites under the contact record
I'm currently using `restforce` gem ``` client.create!('OpenActivity', Subject: "REST API", WhoId: "0039000001tCKit")
```
result: Faraday::ClientError: CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY: entity type cannot be inserted: Open Activity. Do you have any clue about this error? Is there any configuration that I missed it?
Faraday::ClientError: INVALID_FIELD_FOR_INSERT_UPDATE: Unable to create/update fields: AccountId. Please check the security settings of this field and verify that it is read/write for your profile or permission set
All Answers
I'm currently using `restforce` gem
```
client.create!('OpenActivity', Subject: "REST API", WhoId: "0039000001tCKit")
```
result: Faraday::ClientError: CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY: entity type cannot be inserted: Open Activity. Do you have any clue about this error? Is there any configuration that I missed it?
However, there is a caveat, when I was trying to associate to Contact and Account at the same time
The error is telling me this :
What should I do with this?
I am also wanting to do a similar task is it possible if you could share your Json or Http Post script