Signatures

Table of Contents

Object

Properties marked Private are only visible when the user is your own.

Name Type Description

id

int

unique identifier

image_url

string

url for signature image file

job

int

User

{
  "id": 1,
  "image_url": "http://api.flult.local/media/signatures/content/44791674-19d3-4656-9cef-ed15fd70e1a9.png"
}

Create

Creates a new signature for the specified job. Returns the signature object.

POST /signatures

Input

Name Type Description

file

file

Required Multipart file upload. Must be an image file.

Output

{
  "id": 1,
  "image_url": "http://api.flult.local/media/signatures/content/44791674-19d3-4656-9cef-ed15fd70e1a9.png"
}

List

Returns a single signature for the authenticated if it exists.

GET /signatures

Output

{
  "id": 1,
  "image_url": "http://api.flult.local/media/signatures/content/44791674-19d3-4656-9cef-ed15fd70e1a9.png"
}