Skip to main content
PUT
/
signatures
/
{signature}
curl -X PUT https://app.trypost.it/api/signatures/e5f6a7b8-c9d0-1e2f-3a4b-5c6d7e8f9a0b \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Tech & AI",
    "content": "#tech #ai #machinelearning #startup"
  }'
{
  "id": "e5f6a7b8-c9d0-1e2f-3a4b-5c6d7e8f9a0b",
  "name": "Tech & AI",
  "content": "#tech #ai #machinelearning #startup",
  "created_at": "2025-01-10 08:00:00",
  "updated_at": "2025-01-10 09:00:00"
}

Request

signature
string
required
The signature ID.
name
string
required
The new signature name. Maximum 255 characters.
content
string
required
The new signature content.

Response

Returns the updated signature. Same shape as one entry in GET /signatures.
curl -X PUT https://app.trypost.it/api/signatures/e5f6a7b8-c9d0-1e2f-3a4b-5c6d7e8f9a0b \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Tech & AI",
    "content": "#tech #ai #machinelearning #startup"
  }'
{
  "id": "e5f6a7b8-c9d0-1e2f-3a4b-5c6d7e8f9a0b",
  "name": "Tech & AI",
  "content": "#tech #ai #machinelearning #startup",
  "created_at": "2025-01-10 08:00:00",
  "updated_at": "2025-01-10 09:00:00"
}