- Getting started
- CREDIT ENDPOINTS
- GENERATE ENDPOINTS
- GETText generation rules and limits
- GETAvailable text generation tones
- GETText generation styles
- GETTarget audiences for text generation
- GETAvailable text types for generation
- GETText generation history
- GETStatus of generated texts
- GETGenerated text for multiple records
- GETActive generation requests
- GETDetails of a specific generation request
- POSTText generation
- POSTCancel a bulk generation request
- POSTUpdate generated text fields
- IMAGE ENDPOINTS
- KEYWORDS ENDPOINTS
- GETKeyword optimization data
- POSTOptimize keywords for text
- DELETEKeyword optimization
- PUTKeyword optimization
- GETKeyword optimization list
- PUTKeyword optimization data
- DELETERanking keywords
- PUTKeyword optimization pipelines
- GETKeyword state
- POSTKeyword pipeline
- DELETEKeyword pipeline
- POSTRestore keyword pipeline
- POSTAdd triggers to keyword pipeline
- POSTAdd triggers to a specific keyword pipeline
- POSTLock a specific keyword pipeline
- POSTUnlock a specific keyword pipeline
- GETPipeline snapshots
- PUTUpdate or create a snapshot
- POSTAdd manual keywords
- GETManual keywords
- REVIEW ENDPOINTS
- SUGGESTION ENDPOINTS
Delete ranking keywords
delete
/text/Keywords/Optimization/RankingKeywords
This endpoint allows the removal of specified keywords from the ranking pipeline. It can be used to manage and clean up unnecessary or outdated keywords associated with specific records.
Requirements
Authentication Required
Bearer access_token
Request Headers
Authorization: Bearer access_token
Parameter Name | Type | Description |
---|---|---|
keywords | array [string], required | List of keywords to be removed from the ranking pipeline. |
storeId | string, optional | The store identifier. Defaults to "default" if not provided. |
type | string, required | Specifies the type of entity, which can be either Product or Category. |
recordId | string, required | The ID of the record for which the keyword is updated. |
languageCode | string, optional | Two-letter language code (default: en). |
Example API Request
//https://api-eu.writetext.ai/text/Keywords/Optimization/RankingKeywords?storeId=default&type=Product&recordId=exampleRecordId&languageCode=en&keywords=keyword1&keywords=keyword2
Response
200
400
404
500
//The request was successful, and the specified keywords were removed from the ranking pipeline.
//This error occurs when the request is improperly formatted, or required parameters are missing.
//This error occurs if the provided recordId, storeId, or keyword does not exist or cannot be found.
//The server encountered an error when processing the request.