Create new Electric fuse
  • 29 Aug 2023
  • 1 Minute to read
  • Contributors
  • Dark
    Light
  • PDF

Create new Electric fuse

  • Dark
    Light
  • PDF

Article summary

Post
/el_fuses/

Operation is used to create new electric fuse. Available from product version 3.2.2.

Security
API Key
Header parameter nameAuthorization
Token issued for API consumer.
Body parameters

Electric Fuse to be created

object
connection
integer

Id of bus connection type the fuse uses

description
string

Electric Fuse description

fuse
integer Required

Id of Electric fuse type

id
integer

Id of Electric fuse

identification
string Required

Electric Fuse identification

premise
integer

Id of electric premises the fuse belongs to

switch
integer Required

Id of switch type

vfuse
integer

Id of vfuse type

Responses
201

A created Electric fuse

{
  "connection": null,
  "description": "",
  "fuse": 299230,
  "id": 59201,
  "identification": "abc",
  "premise": null,
  "switch": 303410,
  "vfuse": null
}
object
connection
integer

Id of bus connection type the fuse uses

description
string

Electric Fuse description

fuse
integer

Id of Electric fuse type

id
integer

Id of Electric fuse

identification
string

Electric Fuse identification

premise
integer

Id of electric premises the fuse belongs to

switch
integer

Id of switch type

vfuse
integer

Id of vfuse type

400

There was an error in request. Usually field validation failed.

{
  "fuse": [
    "This field is required."
  ],
  "identification": [
    "This field is required."
  ],
  "switch": [
    "This field is required."
  ]
}
object

Fields which failed validation

401

Authentication credentials are missing or invalid

{
  "details": "Authentication credentials were not provided"
}
object
details
string

Detailed description of error


Was this article helpful?