1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357 |
- definitions:
- dto.AddPlaceRequest:
- properties:
- parent_id:
- type: integer
- title:
- type: string
- required:
- - title
- type: object
- dto.AddTagRequest:
- properties:
- style:
- type: string
- title:
- type: string
- required:
- - style
- - title
- type: object
- dto.AddThingNotificationRequest:
- properties:
- notification_date:
- format: date-time
- type: string
- thing_id:
- type: integer
- required:
- - notification_date
- - thing_id
- type: object
- dto.AddThingRequest:
- properties:
- description:
- type: string
- place_id:
- type: integer
- title:
- type: string
- required:
- - place_id
- - title
- type: object
- dto.AddUserRequest:
- properties:
- password:
- type: string
- username:
- type: string
- required:
- - password
- - username
- type: object
- dto.EmptyResponse:
- type: object
- dto.ErrorResponse:
- properties:
- error:
- type: string
- type: object
- dto.ImageResponse:
- properties:
- created_at:
- type: string
- id:
- type: integer
- image:
- type: string
- place_id:
- type: integer
- thing_id:
- type: integer
- type: object
- dto.ImagesResponse:
- properties:
- images:
- items:
- $ref: '#/definitions/dto.ImageResponse'
- type: array
- type: object
- dto.LoginRequest:
- properties:
- password:
- type: string
- username:
- type: string
- required:
- - password
- - username
- type: object
- dto.LoginResponse:
- properties:
- token:
- type: string
- type: object
- dto.PlaceResponse:
- properties:
- created_at:
- type: string
- id:
- type: integer
- parent_id:
- type: integer
- title:
- type: string
- updated_at:
- type: string
- type: object
- dto.PlaceTree:
- properties:
- nested:
- items:
- $ref: '#/definitions/dto.PlaceTree'
- type: array
- place:
- $ref: '#/definitions/dto.PlaceResponse'
- type: object
- dto.PlaceTreeResponse:
- properties:
- places:
- items:
- $ref: '#/definitions/dto.PlaceTree'
- type: array
- type: object
- dto.PlacesResponse:
- properties:
- places:
- items:
- $ref: '#/definitions/dto.PlaceResponse'
- type: array
- type: object
- dto.TagResponse:
- properties:
- created_at:
- type: string
- id:
- type: integer
- style:
- type: string
- title:
- type: string
- updated_at:
- type: string
- type: object
- dto.TagsResponse:
- properties:
- tags:
- items:
- $ref: '#/definitions/dto.TagResponse'
- type: array
- type: object
- dto.ThingExtResponse:
- properties:
- created_at:
- type: string
- description:
- type: string
- id:
- type: integer
- place_id:
- type: integer
- tags:
- items:
- $ref: '#/definitions/dto.TagResponse'
- type: array
- title:
- type: string
- updated_at:
- type: string
- type: object
- dto.ThingNotificationExtResponse:
- properties:
- created_at:
- type: string
- notification_date:
- type: string
- place_id:
- type: integer
- place_title:
- type: string
- thing_id:
- type: integer
- thing_title:
- type: string
- updated_at:
- type: string
- type: object
- dto.ThingNotificationResponse:
- properties:
- created_at:
- type: string
- id:
- type: integer
- notification_date:
- type: string
- updated_at:
- type: string
- type: object
- dto.ThingNotificationsExtResponse:
- properties:
- notifications:
- items:
- $ref: '#/definitions/dto.ThingNotificationExtResponse'
- type: array
- type: object
- dto.ThingResponse:
- properties:
- created_at:
- type: string
- description:
- type: string
- id:
- type: integer
- place_id:
- type: integer
- title:
- type: string
- updated_at:
- type: string
- type: object
- dto.ThingsExtResponse:
- properties:
- things:
- items:
- $ref: '#/definitions/dto.ThingExtResponse'
- type: array
- type: object
- dto.UpdatePlaceRequest:
- properties:
- parent_id:
- type: integer
- title:
- type: string
- required:
- - title
- type: object
- dto.UpdateTagRequest:
- properties:
- style:
- type: string
- title:
- type: string
- required:
- - style
- - title
- type: object
- dto.UpdateThingNotificationRequest:
- properties:
- notification_date:
- format: date-time
- type: string
- required:
- - notification_date
- type: object
- dto.UpdateThingRequest:
- properties:
- description:
- type: string
- place_id:
- type: integer
- title:
- type: string
- required:
- - place_id
- - title
- type: object
- dto.UpdateUserRequest:
- properties:
- password:
- type: string
- username:
- type: string
- type: object
- dto.UserResponse:
- properties:
- username:
- type: string
- type: object
- info:
- contact: {}
- title: Homethings API
- version: "1.0"
- paths:
- /api/v1/auth/check:
- get:
- consumes:
- - application/json
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.UserResponse'
- "403":
- description: Forbidden
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- summary: Check auth
- tags:
- - Auth
- /api/v1/auth/login:
- post:
- consumes:
- - application/json
- parameters:
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.LoginRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.LoginResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "403":
- description: Forbidden
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- summary: Log in user
- tags:
- - Auth
- /api/v1/images:
- post:
- consumes:
- - multipart/form-data
- parameters:
- - description: Place ID
- in: formData
- name: place_id
- type: integer
- - description: Thing ID
- in: formData
- name: thing_id
- type: integer
- - collectionFormat: csv
- description: Files
- in: formData
- items:
- type: file
- name: files
- required: true
- type: array
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Add images
- tags:
- - Images
- /api/v1/images/place/{imageId}:
- delete:
- consumes:
- - application/json
- parameters:
- - description: Image ID
- in: path
- name: imageId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Delete image
- tags:
- - Images
- /api/v1/images/place/{placeId}:
- get:
- consumes:
- - application/json
- parameters:
- - description: Place ID
- in: path
- name: placeId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ImagesResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get images by place ID (with child places)
- tags:
- - Images
- /api/v1/images/thing/{imageId}:
- delete:
- consumes:
- - application/json
- parameters:
- - description: Image ID
- in: path
- name: imageId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Delete image
- tags:
- - Images
- /api/v1/images/thing/{thingId}:
- get:
- consumes:
- - application/json
- parameters:
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ImagesResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get images by thing ID
- tags:
- - Images
- /api/v1/places:
- get:
- consumes:
- - application/json
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.PlacesResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get places list
- tags:
- - Places
- post:
- consumes:
- - application/json
- parameters:
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.AddPlaceRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.PlaceResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Add place
- tags:
- - Places
- /api/v1/places/{parentPlaceId}/nested:
- get:
- consumes:
- - application/json
- parameters:
- - description: Place ID
- in: path
- name: parentPlaceId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.PlacesResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get nested places by parent ID
- tags:
- - Places
- /api/v1/places/{placeId}:
- delete:
- consumes:
- - application/json
- parameters:
- - description: Place ID
- in: path
- name: placeId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Delete place
- tags:
- - Places
- get:
- consumes:
- - application/json
- parameters:
- - description: Place ID
- in: path
- name: placeId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.PlaceResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "404":
- description: Not Found
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get one place
- tags:
- - Places
- put:
- consumes:
- - application/json
- parameters:
- - description: Place ID
- in: path
- name: placeId
- required: true
- type: integer
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.UpdatePlaceRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.PlaceResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Update place
- tags:
- - Places
- /api/v1/places/tree:
- get:
- consumes:
- - application/json
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.PlaceTreeResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get places tree
- tags:
- - Places
- /api/v1/tags:
- get:
- consumes:
- - application/json
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.TagsResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get tags
- tags:
- - Tags
- post:
- consumes:
- - application/json
- parameters:
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.AddTagRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.TagResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Add tag
- tags:
- - Tags
- /api/v1/tags/{tagId}:
- delete:
- consumes:
- - application/json
- parameters:
- - description: Tag ID
- in: path
- name: tagId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Delete tag
- tags:
- - Tags
- get:
- consumes:
- - application/json
- parameters:
- - description: Tag ID
- in: path
- name: tagId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.TagResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "404":
- description: Not Found
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get one tag
- tags:
- - Tags
- put:
- consumes:
- - application/json
- parameters:
- - description: Tag ID
- in: path
- name: tagId
- required: true
- type: integer
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.UpdateTagRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.TagResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Update tag
- tags:
- - Tags
- /api/v1/tags/{tagId}/thing/{thingId}:
- delete:
- consumes:
- - application/json
- parameters:
- - description: Tag ID
- in: path
- name: tagId
- required: true
- type: integer
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Delete thing tag
- tags:
- - Tags
- post:
- consumes:
- - application/json
- parameters:
- - description: Tag ID
- in: path
- name: tagId
- required: true
- type: integer
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.TagResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Add thing tag
- tags:
- - Tags
- /api/v1/tags/thing/{thingId}:
- get:
- consumes:
- - application/json
- parameters:
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.TagsResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get thing tags
- tags:
- - Tags
- /api/v1/things:
- post:
- consumes:
- - application/json
- parameters:
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.AddThingRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ThingResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Add thing
- tags:
- - Things
- /api/v1/things/{thingId}:
- delete:
- consumes:
- - application/json
- parameters:
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Delete thing
- tags:
- - Things
- get:
- consumes:
- - application/json
- parameters:
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ThingResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "404":
- description: Not Found
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get one thing
- tags:
- - Things
- put:
- consumes:
- - application/json
- parameters:
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.UpdateThingRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ThingResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Update thing
- tags:
- - Things
- /api/v1/things/notifications:
- post:
- consumes:
- - application/json
- parameters:
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.AddThingNotificationRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ThingNotificationResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Add thing notification
- tags:
- - Notifications
- /api/v1/things/notifications/{thingId}:
- delete:
- consumes:
- - application/json
- parameters:
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Delete thing notification
- tags:
- - Notifications
- get:
- consumes:
- - application/json
- parameters:
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ThingNotificationResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "404":
- description: Not Found
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get thing notification
- tags:
- - Notifications
- put:
- consumes:
- - application/json
- parameters:
- - description: Thing ID
- in: path
- name: thingId
- required: true
- type: integer
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.UpdateThingNotificationRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ThingNotificationResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Update thing notification
- tags:
- - Notifications
- /api/v1/things/notifications/expired:
- get:
- consumes:
- - application/json
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ThingNotificationsExtResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get expired thing notifications
- tags:
- - Notifications
- /api/v1/things/place/{placeId}:
- get:
- consumes:
- - application/json
- parameters:
- - description: Place ID
- in: path
- name: placeId
- required: true
- type: integer
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ThingsExtResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Get things by place ID
- tags:
- - Things
- /api/v1/things/search/{search}:
- get:
- consumes:
- - application/json
- parameters:
- - description: Search string
- in: path
- name: search
- required: true
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.ThingResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Search things
- tags:
- - Things
- /api/v1/users:
- post:
- consumes:
- - application/json
- parameters:
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.AddUserRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Add user
- tags:
- - Users
- put:
- consumes:
- - application/json
- parameters:
- - description: Request body
- in: body
- name: data
- required: true
- schema:
- $ref: '#/definitions/dto.UpdateUserRequest'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/dto.EmptyResponse'
- "400":
- description: Bad Request
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/dto.ErrorResponse'
- security:
- - APIKey: []
- summary: Update user
- tags:
- - Users
- securityDefinitions:
- APIKey:
- in: header
- name: Authorization
- type: apiKey
- swagger: "2.0"
|