Update

PUT /users/:user/signature

A Signature is a piece of text that can be automatically appended to outgoing messages.

Examples

Update the User’s Signature

Request

PUT /users/wqyODPA/signature

Body

{
  "content": "Cordell Walker"
}
Example
$ curl -i -H Accept:"application/vnd.textus+jsonld" \
    -H Authorization:"Bearer {token}" \
    -X PUT /users/wqyODPA/signature
    -d '{
  "content": "Cordell Walker"
}'

Response

Status

200

Response Type

Signature

Example Body

{
  "@type": "Signature",
  "id": "/users/wqyODPA/signature",
  "@context": "/contexts/Signature.jsonld",
  "content": "Cordell Walker"
}

© 2024 TextUs