- Getting started
- Metrics
- Idea manager
- Feedback Collection
- Segments
- Retrieves a list of segments without users
- Create segment
- Modify a segment
- Removes a segment
- Bulk create users to a segment
- Manage user segments: move or remove
- Retrieve segments with users
- Retrieve segment with users
- Import Users (CSV/JSON)
- Sending email to segment members
- Sending email to selected idm members
- Bulk create idea manager members
- Import Users (CSV/JSON) in IDM
- Bulk re-invite in IDM
- Backlog Management
- Strategy Board
- Persona Board V2
- Segments
- Custom fields
- Removes a custom fieldDELETE
- Retrieve a list of custom fieldsGET
- Retrieve a custom fieldGET
- Create a custom fieldPOST
- Removes a custom field optionDELETE
- Detaches a custom field from personaPATCH
- Retrieve custom fields excluding personaGET
- Creates a new optionPOST
- Permanently deletes a custom fieldDELETE
- Update custom fieldPATCH
- Update custom field optionPATCH
- Attach a custom field to a personaPATCH
- Create opportunities from summaryPOST
- Retrieve notesGET
- Retrieve personaGET
- Retrieve experiments for PersonaGET
- CreatePOST
- RetrieveGET
- DocsHub
Removes a custom field option
DELETE
/api/v2/persona/PE-1/custom-fields/27/options/15
v2
Request
Header Params
Authorization
string
required
Content-Type
string
required
Example:
application/json
initiativeId
string
required
Example:
DRA
subscriptionId
string
required
Example:
SSS
Body Params application/json
object {0}
Example
{}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.shorterloop.com/api/v2/persona/PE-1/custom-fields/27/options/15' \
--header 'Authorization;' \
--header 'Authorization;' \
--header 'initiativeId: DRA' \
--header 'initiativeId;' \
--header 'subscriptionId: SSS' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
success
boolean
required
message
string
required
data
array [object {7}]
required
id
integer
required
name
string
required
value
null
required
fieldId
integer
required
selectedCustomFieldOptionId
integer
required
selectedOptionValue
string | null
required
custom_field_options
array [object {2}]
required
Example
{
"success": true,
"message": "string",
"data": [
{
"id": 0,
"name": "string",
"value": null,
"fieldId": 0,
"selectedCustomFieldOptionId": 0,
"selectedOptionValue": "string",
"custom_field_options": [
{
"id": 0,
"value": "string"
}
]
}
]
}
Modified at 2024-09-11 12:18:05