> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.flashid.app/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.flashid.app/_mcp/server.

# Quick update profile

POST http://127.0.0.1:58931/api/profiles/quick-update
Content-Type: application/json

Partial update of non-fingerprint info only — name / note / folder / proxy. Send `profile_uuid` plus only the fields you want to change; omitted fields stay as they are. To change fingerprint settings use Update profile.

Reference: https://docs.flashid.app/api-reference/profiles/quick-update-profile

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /api/profiles/quick-update:
    post:
      operationId: quick-update-profile
      summary: Quick update profile
      description: >-
        Partial update of non-fingerprint info only — name / note / folder /
        proxy. Send `profile_uuid` plus only the fields you want to change;
        omitted fields stay as they are. To change fingerprint settings use
        Update profile.
      tags:
        - subpackage_profiles
      parameters:
        - name: X-API-Key
          in: header
          description: API Key generated in the FlashID app.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileMutationResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QuickUpdateRequest'
servers:
  - url: http://127.0.0.1:58931
    description: Local service (default port 58931)
components:
  schemas:
    ProxyInputNestedMode:
      type: string
      enum:
        - none
        - static
        - rotating
      description: >-
        none = no proxy (the default when omitted); static = bind a saved proxy;
        rotating = dynamic proxy.
      title: ProxyInputNestedMode
    ProxyInputNestedType:
      type: string
      enum:
        - residential
      description: >-
        Used when mode = rotating. Only residential is supported (mobile not
        available yet).
      title: ProxyInputNestedType
    ProxyInputNestedIpchecker:
      type: string
      enum:
        - ip2location
        - ipapi
      description: Optional IP lookup service.
      title: ProxyInputNestedIpchecker
    ProxyInputNested:
      type: object
      properties:
        mode:
          $ref: '#/components/schemas/ProxyInputNestedMode'
          description: >-
            none = no proxy (the default when omitted); static = bind a saved
            proxy; rotating = dynamic proxy.
        proxy_uuid:
          type: string
          description: >-
            Required when mode = static — uuid of an existing saved proxy (from
            List proxies).
        type:
          $ref: '#/components/schemas/ProxyInputNestedType'
          description: >-
            Used when mode = rotating. Only residential is supported (mobile not
            available yet).
        region:
          type: string
          description: Used when mode = rotating — country/region code from Region tree.
        state:
          type: string
          description: Used when mode = rotating — optional sub-region.
        city:
          type: string
          description: Used when mode = rotating — optional city.
        ipchecker:
          $ref: '#/components/schemas/ProxyInputNestedIpchecker'
          description: Optional IP lookup service.
      description: >-
        Proxy config. Optional — omit the whole object for no proxy. When
        present, the shape depends on `mode`.
      title: ProxyInputNested
    QuickUpdateRequest:
      type: object
      properties:
        profile_uuid:
          type: string
        profile_name:
          type: string
        note:
          type: string
        folder_uuid:
          type: string
          description: '"0" removes it from its folder (root)'
        proxy:
          $ref: '#/components/schemas/ProxyInputNested'
      required:
        - profile_uuid
      description: >-
        Partial update of non-fingerprint info. profile_uuid required; send only
        the fields to change.
      title: QuickUpdateRequest
    ProfileMutationResponseData:
      type: object
      properties:
        message:
          type: string
        profile_uuid:
          type: string
      title: ProfileMutationResponseData
    ProfileMutationResponse:
      type: object
      properties:
        success:
          type: boolean
        code:
          type: integer
        data:
          $ref: '#/components/schemas/ProfileMutationResponseData'
      required:
        - success
        - code
      title: ProfileMutationResponse
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key generated in the FlashID app.

```

## Examples



**Request**

```json
{
  "profile_uuid": "a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d"
}
```

**Response**

```json
{
  "success": true,
  "code": 0,
  "data": {
    "message": "success",
    "profile_uuid": "a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d"
  }
}
```

**SDK Code**

```python
import requests

url = "http://127.0.0.1:58931/api/profiles/quick-update"

payload = { "profile_uuid": "a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d" }
headers = {
    "X-API-Key": "<apiKey>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'http://127.0.0.1:58931/api/profiles/quick-update';
const options = {
  method: 'POST',
  headers: {'X-API-Key': '<apiKey>', 'Content-Type': 'application/json'},
  body: '{"profile_uuid":"a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d"}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "http://127.0.0.1:58931/api/profiles/quick-update"

	payload := strings.NewReader("{\n  \"profile_uuid\": \"a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("X-API-Key", "<apiKey>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("http://127.0.0.1:58931/api/profiles/quick-update")

http = Net::HTTP.new(url.host, url.port)

request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<apiKey>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"profile_uuid\": \"a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d\"\n}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("http://127.0.0.1:58931/api/profiles/quick-update")
  .header("X-API-Key", "<apiKey>")
  .header("Content-Type", "application/json")
  .body("{\n  \"profile_uuid\": \"a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d\"\n}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'http://127.0.0.1:58931/api/profiles/quick-update', [
  'body' => '{
  "profile_uuid": "a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d"
}',
  'headers' => [
    'Content-Type' => 'application/json',
    'X-API-Key' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("http://127.0.0.1:58931/api/profiles/quick-update");
var request = new RestRequest(Method.POST);
request.AddHeader("X-API-Key", "<apiKey>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"profile_uuid\": \"a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "X-API-Key": "<apiKey>",
  "Content-Type": "application/json"
]
let parameters = ["profile_uuid": "a3f1c9e2-7b4d-4f8a-9c2e-5d6f7a8b9c0d"] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "http://127.0.0.1:58931/api/profiles/quick-update")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```