File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Let's say you want to manage marketing campaigns on DevRev. This guide goes thro
23
23
24
24
All DevRev objects require a schema. First, create a schema for the "Campaign" custom object. Make sure to replace the ` <TOKEN> ` with your API token.
25
25
26
- ### Create a schema and a custom object
26
+ ### Create custom objects
27
27
28
28
``` curl
29
29
curl --location 'https://api.devrev.ai/schemas.custom.set' \
@@ -127,7 +127,7 @@ Note that the `id` field in the above response is the system generated unique ID
127
127
128
128
The sections below provide more details on the available API endpoints for interacting with custom objects.
129
129
130
- ### Get a custom object
130
+ ### Get custom objects
131
131
132
132
To get a custom object, use the ` custom-objects.get ` endpoint:
133
133
@@ -160,7 +160,7 @@ curl --location 'https://api.devrev.ai/custom-objects.list' \
160
160
}'
161
161
```
162
162
163
- ### Update a custom object
163
+ ### Update custom objects
164
164
165
165
To update an existing custom object, use the ` custom-objects.update ` endpoint. The
166
166
following example updates the budget of the previously created campaign custom object:
@@ -178,7 +178,7 @@ curl --location 'https://api.devrev.ai/custom-objects.update' \
178
178
}'
179
179
```
180
180
181
- ### Delete a custom object
181
+ ### Delete custom objects
182
182
183
183
To delete a custom object, use the ` custom-objects.delete ` endpoint.
184
184
The following example deletes the previously created campaign custom object:
You can’t perform that action at this time.
0 commit comments