- 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 membersPOST
- Import Users (CSV/JSON) in IDMPOST
- Bulk re-invite in IDMPUT
- Backlog Management
- Strategy Board
- Persona Board V2
- Segments
- Custom fields
- Removes a custom field
- Retrieve a list of custom fields
- Retrieve a custom field
- Create a custom field
- Removes a custom field option
- Detaches a custom field from persona
- Retrieve custom fields excluding persona
- Creates a new option
- Permanently deletes a custom field
- Update custom field
- Update custom field option
- Attach a custom field to a persona
- Create opportunities from summaryPOST
- Retrieve notesGET
- Retrieve personaGET
- Retrieve experiments for PersonaGET
- CreatePOST
- RetrieveGET
- DocsHub
Update segment option
PATCH
/api/v2/persona/PE-1/segments/34/options/1
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
name
string
required
value
string
required
Example
{
"name": "culpa dolorum ut",
"value": "commodo irure"
}
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 PATCH 'https://api.shorterloop.com/api/v2/persona/PE-1/segments/34/options/1' \
--header 'Authorization;' \
--header 'Authorization;' \
--header 'initiativeId: DRA' \
--header 'initiativeId;' \
--header 'subscriptionId: SSS' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "culpa dolorum ut",
"value": "commodo irure"
}'
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:06:54