GET /api/smart_proxies/:smart_proxy_id/autosign
List all autosign entries

Examples

GET /api/smart_proxies/182953976/autosign
200
{
  "results": [
    "a5809524-82fe-a8a4f3d6ebf4",
    "5eed0cb7-9aa-00b7b9780f20"
  ]
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer


POST /api/smart_proxies/:smart_proxy_id/autosign
Create autosign entry

Examples

POST /api/smart_proxies/182953976/autosign
{
  "id": "test",
  "autosign": {
    "id": "test"
  }
}
200
{
  "results": true
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

id
required

Autosign entry name

Validations:

  • Must be a String


DELETE /api/smart_proxies/:smart_proxy_id/autosign/:id
Delete autosign entry

Examples

POST /api/smart_proxies/182953976/autosign/test
{
  "autosign": {}
}
200
{
  "results": true
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

id
required

Autosign entry name

Validations:

  • Must be a String