Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 1d54286

Browse files
author
Sameer Naik
authored
Merge pull request #107 from triggermesh/task/add-salesforce-target
Add Salesforce target docs
2 parents 46c0dd9 + 101eb49 commit 1d54286

12 files changed

+229
-3
lines changed
9.62 KB
Loading
14.8 KB
Loading
77.8 KB
Loading
14.6 KB
Loading
50.8 KB
Loading
15.8 KB
Loading
52.7 KB
Loading

docs/schemas/salesforce.apicall.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-04/schema#",
3+
"$ref": "#/definitions/SalesforceAPIRequest",
4+
"definitions": {
5+
"SalesforceAPIRequest": {
6+
"required": [
7+
"action",
8+
"resource"
9+
],
10+
"properties": {
11+
"action": {
12+
"type": "string"
13+
},
14+
"resource": {
15+
"type": "string"
16+
},
17+
"object": {
18+
"type": "string"
19+
},
20+
"record": {
21+
"type": "string"
22+
},
23+
"query": {
24+
"patternProperties": {
25+
".*": {
26+
"type": "string"
27+
}
28+
}
29+
},
30+
"payload": {
31+
"type": "object"
32+
}
33+
},
34+
"additionalProperties": false,
35+
"type": "object"
36+
}
37+
}
38+
}

docs/schemas/triggermesh.error.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-04/schema#",
3+
"$ref": "#/definitions/TriggerMeshError",
4+
"definitions": {
5+
"TriggerMeshError": {
6+
"properties": {
7+
"code": {
8+
"type": "string"
9+
},
10+
"description": {
11+
"type": "string"
12+
},
13+
"details": {
14+
}
15+
},
16+
"additionalProperties": false,
17+
"type": "object"
18+
}
19+
}
20+
}

docs/sources/salesforce.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ openssl req -x509 -sha256 -nodes -days 36500 -newkey rsa:2048 -keyout tm-sf.key
2424
- Add Scopes for `api` and `refresh_token, offline_access`.
2525
- Save.
2626

27-
![Salesforce connected app](../images/salesforce-source/salesforce-connected-app.png)
27+
![Salesforce connected app](../images/salesforce/salesforce-connected-app.png)
2828

2929
- Select the Connected App from the list and at the click on `Manage`.
3030
- Click `Edit policies`.
3131
- Set Permitted users to `Admin approved users are pre-authorized`.
3232
- Save.
3333

34-
![Connected app policies](../images/salesforce-source/connected-app-policies.png)
34+
![Connected app policies](../images/salesforce/connected-app-policies.png)
3535

3636
- Select the Connected App from the list and at the click on `Manage`.
3737
- Click `Manage Profiles`.

0 commit comments

Comments
 (0)