swagger: '2.0' info: title: Odyssee Rest API version: 1.0.0 description: Odyssee Rest API tags: - name: ApiLog description: ApiLog tag - name: Article description: Article tag - name: ArticleCategory description: ArticleCategory tag - name: ArticleColor description: ArticleColor tag - name: ArticleGroup1 description: ArticleGroup1 tag - name: ArticleGroup2 description: ArticleGroup2 tag - name: ArticleGroup3 description: ArticleGroup3 tag - name: ArticleGroup4 description: ArticleGroup4 tag - name: ArticleGroup5 description: ArticleGroup5 tag - name: ArticleGroup6 description: ArticleGroup6 tag - name: ArticlePriceLabel description: ArticlePriceLabel tag - name: ArticlePriceList description: ArticlePriceList tag - name: ArticleStatusList description: ArticleStatusList tag - name: ArticleStockLocation description: ArticleStockLocation tag - name: ArticleStockLocationList description: ArticleStockLocationList tag - name: Car description: Car tag - name: CarTravel description: CarTravel tag - name: Company description: Company tag - name: CompanyContact description: CompanyContact tag - name: CompanySalesTerritoryList description: CompanySalesTerritoryList tag - name: CompanySector description: CompanySector tag - name: CompanyType description: CompanyType tag - name: Contact description: Contact tag - name: Contract description: Contract tag - name: Country description: Country tag - name: DbAddress description: DbAddress tag - name: DbFile description: DbFile tag - name: DbFileFolder description: DbFileFolder tag - name: DbInfo description: DbInfo tag - name: DbInfoData description: DbInfoData tag - name: DbInfoDataArticle description: DbInfoDataArticle tag - name: DbInfoDataCompany description: DbInfoDataCompany tag - name: DbInfoDataDbReport description: DbInfoDataDbReport tag - name: DbInfoDataJobs description: DbInfoDataJobs tag - name: DbInfoDataProject description: DbInfoDataProject tag - name: DbInfoDataTask description: DbInfoDataTask tag - name: DbInfoDataUser description: DbInfoDataUser tag - name: DbInfoField description: DbInfoField tag - name: DbInfoFieldProperty description: DbInfoFieldProperty tag - name: DbNotes description: DbNotes tag - name: DbPaymentMethods description: DbPaymentMethods tag - name: DbReport description: DbReport tag - name: EmailNotification description: EmailNotification tag - name: EmailNotificationList description: EmailNotificationList tag - name: EquipmentBrand description: EquipmentBrand tag - name: EquipmentFamily description: EquipmentFamily tag - name: EquipmentModel description: EquipmentModel tag - name: FeeList description: FeeList tag - name: FeeListPrice description: FeeListPrice tag - name: HourType description: HourType tag - name: HourTypeGroup description: HourTypeGroup tag - name: Invoice description: Invoice tag - name: InvoiceDetails description: InvoiceDetails tag - name: InvoiceView description: InvoiceView tag - name: JobApproval description: JobApproval tag - name: JobEstimatedQuantity description: JobEstimatedQuantity tag - name: JobFiles description: JobFiles tag - name: JobNonPartUsage description: JobNonPartUsage tag - name: JobPartUsage description: JobPartUsage tag - name: JobPlanning description: JobPlanning tag - name: JobPriority description: JobPriority tag - name: Jobs description: Jobs tag - name: JobStatus description: JobStatus tag - name: JobType description: JobType tag - name: JobWorkInstructionList description: JobWorkInstructionList tag - name: Language description: Language tag - name: Location description: Location tag - name: MarketingSegment description: MarketingSegment tag - name: Project description: Project tag - name: ProjectStatus description: ProjectStatus tag - name: PurchaseOrder description: PurchaseOrder tag - name: PurchaseOrderDetails description: PurchaseOrderDetails tag - name: SalesOrganization description: SalesOrganization tag - name: SalesTerritory description: SalesTerritory tag - name: Skill description: Skill tag - name: Task description: Task tag - name: TaskActivity description: TaskActivity tag - name: TaskActivityLog description: TaskActivityLog tag - name: TaskFiles description: TaskFiles tag - name: TaskPriority description: TaskPriority tag - name: TaskStatus description: TaskStatus tag - name: TaskType description: TaskType tag - name: User description: User tag - name: UserGroup description: UserGroup tag - name: UserPlanningSlot description: UserPlanningSlot tag - name: UserPlanningSlotType description: UserPlanningSlotType tag - name: UserSalesOrganizationList description: UserSalesOrganizationList tag - name: UserSalesTerritoryList description: UserSalesTerritoryList tag - name: UserSkillList description: UserSkillList tag - name: UserTimesheet description: UserTimesheet tag - name: UserUnavailability description: UserUnavailability tag - name: UserUnavailabilityType description: UserUnavailabilityType tag - name: UserWeekApproval description: UserWeekApproval tag - name: WorkInstruction description: WorkInstruction tag - name: WorkInstructionActionType description: WorkInstructionActionType tag - name: WorkInstructionDetails description: WorkInstructionDetails tag paths: /api/ApiLog({id}): get: tags: - ApiLog summary: Retrieves a api log with the specified key operationId: GET-api-ApiLog(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/api_log' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred delete: tags: - ApiLog summary: Deletes the api_log with the specified key operationId: DELETE-api-ApiLog(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ApiLog: get: tags: - ApiLog summary: Retrieves all the api logs operationId: GET-api-ApiLog produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/api_log' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ApiLog summary: Creates a new api log object operationId: POST-api-ApiLog produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/api_log' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/api_log' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/api_log' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Article({id}): get: tags: - Article summary: Retrieves the article with the specified key operationId: GET-api-Article(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Article summary: Updates the article with the specified key operationId: PUT-api-Article(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Article: get: tags: - Article summary: Retrieves all the articles operationId: GET-api-Article produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Article summary: Creates a new article operationId: POST-api-Article produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleCategory({id}): get: tags: - ArticleCategory summary: Retrieves the article category with the specified key operationId: GET-api-ArticleCategory(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_category' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleCategory summary: Updates the article category with the specified key operationId: PUT-api-ArticleCategory(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_category' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_category' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - ArticleCategory summary: Deletes the article category with the specified key operationId: DELETE-api-ArticleCategory(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ArticleCategory: get: tags: - ArticleCategory summary: Retrieves all the article categories operationId: GET-api-ArticleCategory produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_category' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleCategory summary: Creates a new article category operationId: POST-api-ArticleCategory produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_category' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_category' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_category' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleColor({id}): get: tags: - ArticleColor summary: Retrieves the article color with the specified key operationId: GET-api-ArticleColor(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_color' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleColor summary: Updates the article color with the specified key operationId: PUT-api-ArticleColor(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_color' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_color' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleColor: get: tags: - ArticleColor summary: Retrieves all the article color operationId: GET-api-ArticleColor produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_color' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleColor summary: Creates a new article color operationId: POST-api-ArticleColor produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_color' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_color' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_color' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleGroup1({id}): get: tags: - ArticleGroup1 summary: Retrieves the item of article group 1 with the specified key operationId: GET-api-ArticleGroup1(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_1' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleGroup1 summary: Updates the item of article group 1 with the specified key operationId: PUT-api-ArticleGroup1(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_group_1' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_1' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - ArticleGroup1 summary: Deletes the item of article group 1 with the specified key operationId: DELETE-api-ArticleGroup1(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ArticleGroup1: get: tags: - ArticleGroup1 summary: Retrieves all items of article group 1 operationId: GET-api-ArticleGroup1 produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_1' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleGroup1 summary: Creates a new item within article group 1 operationId: POST-api-ArticleGroup1 produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_group_1' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_1' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_group_1' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleGroup2({id}): get: tags: - ArticleGroup2 summary: Retrieves the item of article group 2 with the specified key operationId: GET-api-ArticleGroup2(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_2' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleGroup2 summary: Updates the item of article group 2 with the specified key operationId: PUT-api-ArticleGroup2(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_group_2' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_2' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - ArticleGroup2 summary: Deletes the item of article group 2 with the specified key operationId: DELETE-api-ArticleGroup2(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ArticleGroup2: get: tags: - ArticleGroup2 summary: Retrieves all items of article group 2 operationId: GET-api-ArticleGroup2 produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_2' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleGroup2 summary: Creates a new item within article group 2 operationId: POST-api-ArticleGroup2 produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_group_2' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_2' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_group_2' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleGroup3({id}): get: tags: - ArticleGroup3 summary: Retrieves the item of article group 3 with the specified key operationId: GET-api-ArticleGroup3(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_3' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleGroup3 summary: Updates the item of article group 3 with the specified key operationId: PUT-api-ArticleGroup3(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_group_3' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_3' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - ArticleGroup3 summary: Deletes the item of article group 3 with the specified key operationId: DELETE-api-ArticleGroup3(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ArticleGroup3: get: tags: - ArticleGroup3 summary: Retrieves all items of article group 3 operationId: GET-api-ArticleGroup3 produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_3' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleGroup3 summary: Creates a new item within article group 3 operationId: POST-api-ArticleGroup3 produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_group_3' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_3' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_group_3' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleGroup4({id}): get: tags: - ArticleGroup4 summary: Retrieves the item of article group 4 with the specified key operationId: GET-api-ArticleGroup4(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_4' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleGroup4 summary: Updates the item of article group 4 with the specified key operationId: PUT-api-ArticleGroup4(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_group_4' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_4' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - ArticleGroup4 summary: Deletes the item of article group 4 with the specified key operationId: DELETE-api-ArticleGroup4(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ArticleGroup4: get: tags: - ArticleGroup4 summary: Retrieves all items of article group 4 operationId: GET-api-ArticleGroup4 produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_4' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleGroup4 summary: Creates a new item within article group 4 operationId: POST-api-ArticleGroup4 produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_group_4' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_4' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_group_4' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleGroup5({id}): get: tags: - ArticleGroup5 summary: Retrieves the item of article group 5 with the specified key operationId: GET-api-ArticleGroup5(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_5' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleGroup5 summary: Updates the item of article group 5 with the specified key operationId: PUT-api-ArticleGroup5(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_group_5' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_5' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - ArticleGroup5 summary: Deletes the item of article group 5 with the specified key operationId: DELETE-api-ArticleGroup5(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ArticleGroup5: get: tags: - ArticleGroup5 summary: Retrieves all items of article group 5 operationId: GET-api-ArticleGroup5 produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_5' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleGroup5 summary: Creates a new item within article group 5 operationId: POST-api-ArticleGroup5 produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_group_5' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_5' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_group_5' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleGroup6({id}): get: tags: - ArticleGroup6 summary: Retrieves the item of article group 6 with the specified key operationId: GET-api-ArticleGroup6(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_6' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleGroup6 summary: Updates the item of article group 6 with the specified key operationId: PUT-api-ArticleGroup6(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_group_6' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_6' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - ArticleGroup6 summary: Deletes the item of article group 6 with the specified key operationId: DELETE-api-ArticleGroup6(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ArticleGroup6: get: tags: - ArticleGroup6 summary: Retrieves all items of article group 6 operationId: GET-api-ArticleGroup6 produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_6' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleGroup6 summary: Creates a new item within article group 6 operationId: POST-api-ArticleGroup6 produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_group_6' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_group_6' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_group_6' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticlePriceLabel({id}): get: tags: - ArticlePriceLabel summary: Retrieves the article price label with the specified key operationId: GET-api-ArticlePriceLabel(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_price_label' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticlePriceLabel summary: Updates the article price label with the specified key operationId: PUT-api-ArticlePriceLabel(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_price_label' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_price_label' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticlePriceLabel: get: tags: - ArticlePriceLabel summary: Retrieves all the article price label operationId: GET-api-ArticlePriceLabel produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_price_label' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticlePriceLabel summary: Creates a new article price label operationId: POST-api-ArticlePriceLabel produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_price_label' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_price_label' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_price_label' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticlePriceList({id}): get: tags: - ArticlePriceList summary: Retrieves the article price list with the specified key operationId: GET-api-ArticlePriceList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_price_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticlePriceList summary: Updates the article price list with the specified key operationId: PUT-api-ArticlePriceList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_price_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_price_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticlePriceList: get: tags: - ArticlePriceList summary: Retrieves all the article price list operationId: GET-api-ArticlePriceList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_price_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticlePriceList summary: Creates a new article price list operationId: POST-api-ArticlePriceList produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_price_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_price_list' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_price_list' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleStatusList({id}): get: tags: - ArticleStatusList summary: Retrieves the article status list with the specified key operationId: GET-api-ArticleStatusList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_status_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleStatusList summary: Updates the article status list with the specified key operationId: PUT-api-ArticleStatusList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_status_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_status_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleStatusList: get: tags: - ArticleStatusList summary: Retrieves all the article status list operationId: GET-api-ArticleStatusList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_status_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleStatusList summary: Creates a new article status list operationId: POST-api-ArticleStatusList produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_status_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_status_list' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_status_list' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleStockLocation({id}): get: tags: - ArticleStockLocation summary: Retrieves the article stock location with the specified key operationId: GET-api-ArticleStockLocation(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_stock_location' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleStockLocation summary: Updates the article stock location with the specified key operationId: PUT-api-ArticleStockLocation(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_stock_location' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_stock_location' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleStockLocation: get: tags: - ArticleStockLocation summary: Retrieves all the article stock location operationId: GET-api-ArticleStockLocation produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_stock_location' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleStockLocation summary: Creates a new article stock location operationId: POST-api-ArticleStockLocation produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_stock_location' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_stock_location' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_stock_location' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ArticleStockLocationList({id}): get: tags: - ArticleStockLocationList summary: Retrieves the article stock location list with the specified key operationId: GET-api-ArticleStockLocationList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_stock_location_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ArticleStockLocationList summary: Updates the article stock location list with the specified key operationId: PUT-api-ArticleStockLocationList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/article_stock_location_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_stock_location_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - ArticleStockLocationList summary: Deletes the article stock location list object with the specified key operationId: DELETE-api-ArticleStockLocationList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ArticleStockLocationList: get: tags: - ArticleStockLocationList summary: Retrieves all the article stock location lists operationId: GET-api-ArticleStockLocationList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_stock_location_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ArticleStockLocationList summary: Creates a new article stock location list operationId: POST-api-ArticleStockLocationList produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/article_stock_location_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/article_stock_location_list' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/article_stock_location_list' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Car({id}): get: tags: - Car summary: Retrieves a car with the specified key operationId: GET-api-Car(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/car' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Car summary: Updates the car with the specified key operationId: PUT-api-Car(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/car' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/car' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - Car summary: Deletes the car object with the specified key operationId: DELETE-api-Car(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Car: get: tags: - Car summary: Retrieves all the cars operationId: GET-api-Car produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/car' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Car summary: Creates a new car operationId: POST-api-Car produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/car' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/car' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/car' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/CarTravel({id}): get: tags: - CarTravel summary: Retrieves a car travel with the specified key operationId: GET-api-CarTravel(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/car_travel' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/CarTravel: get: tags: - CarTravel summary: Retrieves all the car travels operationId: GET-api-CarTravel produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/car_travel' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Company({id}): get: tags: - Company summary: Retrieves the company with the specified key operationId: GET-api-Company(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Company summary: Updates the company with the specified key operationId: PUT-api-Company(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/company' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Company: get: tags: - Company summary: Retrieves all the companies operationId: GET-api-Company produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Company summary: Creates a new company operationId: POST-api-Company produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/company' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/company' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/CompanyContact({id}): get: tags: - CompanyContact summary: Retrieves the company contact with the specified key operationId: GET-api-CompanyContact(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_contact' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - CompanyContact summary: Updates the company contact with the specified key operationId: PUT-api-CompanyContact(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/company_contact' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_contact' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/CompanyContact: get: tags: - CompanyContact summary: Retrieves all the company contact operationId: GET-api-CompanyContact produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_contact' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - CompanyContact summary: Creates a new company contact object operationId: POST-api-CompanyContact produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/company_contact' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_contact' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/company_contact' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/CompanySalesTerritoryList({id}): get: tags: - CompanySalesTerritoryList summary: Retrieves the company_sales_territory_list object with the specified key operationId: GET-api-CompanySalesTerritoryList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_sales_territory_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - CompanySalesTerritoryList summary: Updates the company_sales_territory_list object with the specified key operationId: PUT-api-CompanySalesTerritoryList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/company_sales_territory_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_sales_territory_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - CompanySalesTerritoryList summary: Deletes the company_sales_territory_list object with the specified key operationId: DELETE-api-CompanySalesTerritoryList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/CompanySalesTerritoryList: get: tags: - CompanySalesTerritoryList summary: Retrieves all the company_sales_territory_list objects operationId: GET-api-CompanySalesTerritoryList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_sales_territory_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - CompanySalesTerritoryList summary: Creates a new company_sales_territory_list object operationId: POST-api-CompanySalesTerritoryList produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/company_sales_territory_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_sales_territory_list' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/company_sales_territory_list' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/CompanySector({id}): get: tags: - CompanySector summary: Retrieves the item of compay sector with the specified key operationId: GET-api-CompanySector(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_sector' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - CompanySector summary: Updates the item of company sector with the specified key operationId: PUT-api-CompanySector(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/company_sector' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_sector' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - CompanySector summary: Deletes the company sector with the specified key operationId: DELETE-api-CompanySector(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/CompanySector: get: tags: - CompanySector summary: Retrieves all items of company sector operationId: GET-api-CompanySector produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_sector' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - CompanySector summary: Creates a new item within company sector operationId: POST-api-CompanySector produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/company_sector' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_sector' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/company_sector' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/CompanyType({id}): get: tags: - CompanyType summary: Retrieves the type with the specified key operationId: GET-api-CompanyType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - CompanyType summary: Updates the type with the specified key operationId: PUT-api-CompanyType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/company_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - CompanyType summary: Deletes the type with the specified key operationId: DELETE-api-CompanyType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/CompanyType: get: tags: - CompanyType summary: Retrieves all the type operationId: GET-api-CompanyType produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - CompanyType summary: Creates a new type operationId: POST-api-CompanyType produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/company_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/company_type' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/company_type' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Contact({id}): get: tags: - Contact summary: Retrieves the contact with the specified key operationId: GET-api-Contact(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contact' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Contact summary: Updates the contact with the specified key operationId: PUT-api-Contact(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/contact' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contact' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Contact/GetByEmail?email={email}: get: tags: - Contact summary: Get Contact by email operationId: GET-api-Contact-GetByEmail_email produces: - application/json - application/xml parameters: - name: email in: path description: Email of contact required: true type: string responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contact' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Contact?company_id={company_id}: get: tags: - Contact summary: Get Contact by Company Id operationId: GET-api-Contact_company_id produces: - application/json - application/xml parameters: - name: company_id in: path required: true type: string responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contact' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Contact: get: tags: - Contact summary: Retrieves all the contacts operationId: GET-api-Contact produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contact' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Contact summary: Creates a new contact object operationId: POST-api-Contact produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/contact' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contact' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/contact' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Contract({id}): get: tags: - Contract summary: Retrieves the Contract with the specified key operationId: GET-api-Contract(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contract' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Contract summary: Updates the Contract with the specified key operationId: PUT-api-Contract(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/contract' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contract' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Contract: get: tags: - Contract summary: Retrieves all the contracts operationId: GET-api-Contract produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contract' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Contract summary: Creates a new Contract object operationId: POST-api-Contract produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/contract' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/contract' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/contract' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Country({id}): get: tags: - Country summary: Retrieves the country with the specified key operationId: GET-api-Country(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_country' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Country: get: tags: - Country summary: Retrieves all countries operationId: GET-api-Country produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_country' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbAddress({id}): get: tags: - DbAddress summary: Retrieves the db_address with the specified key operationId: GET-api-DbAddress(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_address' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbAddress summary: Updates the work order type with the specified key operationId: PUT-api-DbAddress(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_address' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_address' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbAddress: get: tags: - DbAddress summary: Retrieves all db_address operationId: GET-api-DbAddress produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_address' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbAddress summary: Create a a new db_address usable for a company operationId: POST-api-DbAddress produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_address' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_address' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_address' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbFile({id}): get: tags: - DbFile summary: Retrieves the db_file with the specified key operationId: GET-api-DbFile(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbFile summary: Update a db_file by supplying directly the field db_file.file_content as Byte Array operationId: PUT-api-DbFile(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_file' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbFile summary: Deletes the global db_file object (or files linked to entity but not JobApprovalPDF/OrderPDF/PurchaseOrderPDF) with the specified key operationId: DELETE-api-DbFile(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbFile/Add?db_table_id={db_table_id}&id_in_table={id_in_table}&description={description}: post: tags: - DbFile summary: Uses to upload files to a entity (like a task). Add file content into request body. operationId: POST-api-DbFile-Add_db_table_id_id_in_table_description produces: - application/json - application/xml parameters: - name: db_table_id in: path description: TableID of the object.For Task uses 448260E5-7A17-4381-A254-0B1D8FE53947 required: true type: string format: guid - name: id_in_table in: path description: ID of the object, like task.id required: true type: string format: guid - name: description in: path description: description of the file required: true type: string responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_file' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbFile/GetFileContent/{id}: get: tags: - DbFile summary: Get the content of the file operationId: GET-api-DbFile-GetFileContent-id produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbFile: get: tags: - DbFile summary: Retrieves all db_file operationId: GET-api-DbFile produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbFile summary: Creates a new db_file by supplying directly the field db_file.file_content as Byte Array operationId: POST-api-DbFile produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_file' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_file' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbFileFolder({id}): get: tags: - DbFileFolder summary: No description operationId: GET-api-DbFileFolder(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file_folder' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbFileFolder summary: No description operationId: PUT-api-DbFileFolder(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_file_folder' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file_folder' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbFileFolder summary: No description operationId: DELETE-api-DbFileFolder(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbFileFolder: get: tags: - DbFileFolder summary: No description operationId: GET-api-DbFileFolder produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file_folder' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbFileFolder summary: No description operationId: POST-api-DbFileFolder produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_file_folder' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_file_folder' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_file_folder' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfo({id}): get: tags: - DbInfo summary: Retrieves an object of the specified key if belongs to a static category (like Company,Project,...) operationId: GET-api-DbInfo(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfo summary: Updates the modifications done on the object that belongs to a static category (like Company,Project,...) operationId: PUT-api-DbInfo(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfo summary: Deletes the object of the specified key operationId: DELETE-api-DbInfo(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfo: get: tags: - DbInfo summary: Retrieves all objects db_info that belongs to a static category (like Company,Project,...) operationId: GET-api-DbInfo produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfo summary: Creates a new object that belongs to a static category (like Company,Project,...) operationId: POST-api-DbInfo produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoData({id}): get: tags: - DbInfoData summary: Retrieves the db_info_data object with the specified key operationId: GET-api-DbInfoData(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoData summary: Updates the db_info_data object with the specified key /// operationId: PUT-api-DbInfoData(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_data' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoData summary: Deletes the db_info_data object with the specified key operationId: DELETE-api-DbInfoData(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoData: get: tags: - DbInfoData summary: Retrieves all the db_info_data objects operationId: GET-api-DbInfoData produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoData summary: Creates a new db_info_data object operationId: POST-api-DbInfoData produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_data' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_data' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoDataArticle({id}): get: tags: - DbInfoDataArticle summary: Retrieves the db_info_data_article object with the specified key operationId: GET-api-DbInfoDataArticle(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_article' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoDataArticle summary: Updates the db_info_data_article object with the specified key /// operationId: PUT-api-DbInfoDataArticle(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_article' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_article' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoDataArticle summary: Deletes the db_info_data_article object with the specified key operationId: DELETE-api-DbInfoDataArticle(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoDataArticle: get: tags: - DbInfoDataArticle summary: Retrieves all the db_info_data_article objects operationId: GET-api-DbInfoDataArticle produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_article' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoDataArticle summary: Creates a new db_info_data_article object operationId: POST-api-DbInfoDataArticle produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_article' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_article' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_data_article' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoDataCompany({id}): get: tags: - DbInfoDataCompany summary: Retrieves the db_info_data_company object with the specified key operationId: GET-api-DbInfoDataCompany(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_company' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoDataCompany summary: Updates the db_info_data_company object with the specified key /// operationId: PUT-api-DbInfoDataCompany(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_company' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_company' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoDataCompany summary: Deletes the db_info_data_company object with the specified key operationId: DELETE-api-DbInfoDataCompany(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoDataCompany: get: tags: - DbInfoDataCompany summary: Retrieves all the db_info_data_company objects operationId: GET-api-DbInfoDataCompany produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_company' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoDataCompany summary: Creates a new db_info_data_company object operationId: POST-api-DbInfoDataCompany produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_company' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_company' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_data_company' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoDataDbReport({id}): get: tags: - DbInfoDataDbReport summary: Retrieves the db_info_data_db_report object with the specified key operationId: GET-api-DbInfoDataDbReport(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_db_report' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoDataDbReport summary: Updates the db_info_data_db_report object with the specified key /// operationId: PUT-api-DbInfoDataDbReport(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_db_report' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_db_report' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoDataDbReport summary: Deletes the db_info_data_db_report object with the specified key operationId: DELETE-api-DbInfoDataDbReport(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoDataDbReport: get: tags: - DbInfoDataDbReport summary: Retrieves all the db_info_data_db_report objects operationId: GET-api-DbInfoDataDbReport produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_db_report' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoDataDbReport summary: Creates a new db_info_data_db_report object operationId: POST-api-DbInfoDataDbReport produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_db_report' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_db_report' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_data_db_report' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoDataJobs({id}): get: tags: - DbInfoDataJobs summary: Retrieves the db_info_data_jobs object with the specified key operationId: GET-api-DbInfoDataJobs(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_jobs' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoDataJobs summary: Updates the db_info_data_jobs object with the specified key /// operationId: PUT-api-DbInfoDataJobs(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_jobs' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_jobs' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoDataJobs summary: Deletes the db_info_data_jobs object with the specified key operationId: DELETE-api-DbInfoDataJobs(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoDataJobs: get: tags: - DbInfoDataJobs summary: Retrieves all the db_info_data_jobs objects operationId: GET-api-DbInfoDataJobs produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_jobs' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoDataJobs summary: Creates a new db_info_data_jobs object operationId: POST-api-DbInfoDataJobs produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_jobs' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_jobs' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_data_jobs' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoDataProject({id}): get: tags: - DbInfoDataProject summary: Retrieves the db_info_data_project object with the specified key operationId: GET-api-DbInfoDataProject(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_project' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoDataProject summary: Updates the db_info_data_project object with the specified key /// operationId: PUT-api-DbInfoDataProject(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_project' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_project' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoDataProject summary: Deletes the db_info_data_project object with the specified key operationId: DELETE-api-DbInfoDataProject(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoDataProject: get: tags: - DbInfoDataProject summary: Retrieves all the db_info_data_project objects operationId: GET-api-DbInfoDataProject produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_project' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoDataProject summary: Creates a new db_info_data_project object operationId: POST-api-DbInfoDataProject produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_project' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_project' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_data_project' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoDataTask({id}): get: tags: - DbInfoDataTask summary: Retrieves the db_info_data_task object with the specified key operationId: GET-api-DbInfoDataTask(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_task' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoDataTask summary: Updates the db_info_data_task object with the specified key /// operationId: PUT-api-DbInfoDataTask(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_task' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_task' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoDataTask summary: Deletes the db_info_data_task object with the specified key operationId: DELETE-api-DbInfoDataTask(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoDataTask: get: tags: - DbInfoDataTask summary: Retrieves all the db_info_data_task objects operationId: GET-api-DbInfoDataTask produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_task' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoDataTask summary: Creates a new db_info_data_task object operationId: POST-api-DbInfoDataTask produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_task' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_task' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_data_task' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoDataUser({id}): get: tags: - DbInfoDataUser summary: Retrieves the db_info_data_user object with the specified key operationId: GET-api-DbInfoDataUser(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_user' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoDataUser summary: Updates the db_info_data_user object with the specified key /// operationId: PUT-api-DbInfoDataUser(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_user' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_user' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoDataUser summary: Deletes the db_info_data_user object with the specified key operationId: DELETE-api-DbInfoDataUser(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoDataUser: get: tags: - DbInfoDataUser summary: Retrieves all the db_info_data_user objects operationId: GET-api-DbInfoDataUser produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_user' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoDataUser summary: Creates a new db_info_data_user object operationId: POST-api-DbInfoDataUser produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_data_user' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_data_user' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_data_user' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoField({id}): get: tags: - DbInfoField summary: Retrieves the item with the specified key operationId: GET-api-DbInfoField(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_field' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoField summary: Updates the item with the specified key operationId: PUT-api-DbInfoField(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_field' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_field' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoField summary: Deletes the item with the specified key operationId: DELETE-api-DbInfoField(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoField: get: tags: - DbInfoField summary: Retrieves all items operationId: GET-api-DbInfoField produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_field' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoField summary: Creates a new item operationId: POST-api-DbInfoField produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_field' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_field' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_field' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbInfoFieldProperty({id}): get: tags: - DbInfoFieldProperty summary: Retrieves the item with the specified key operationId: GET-api-DbInfoFieldProperty(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_field_property' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbInfoFieldProperty summary: Updates the item with the specified key operationId: PUT-api-DbInfoFieldProperty(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_info_field_property' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_field_property' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbInfoFieldProperty summary: Deletes the item with the specified key operationId: DELETE-api-DbInfoFieldProperty(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbInfoFieldProperty: get: tags: - DbInfoFieldProperty summary: Retrieves all items operationId: GET-api-DbInfoFieldProperty produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_field_property' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbInfoFieldProperty summary: Creates a new item operationId: POST-api-DbInfoFieldProperty produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_info_field_property' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_info_field_property' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_info_field_property' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbNotes({id}): get: tags: - DbNotes summary: Retrieves the db note with the specified key operationId: GET-api-DbNotes(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_notes' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbNotes summary: Updates the db note with the specified key operationId: PUT-api-DbNotes(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_notes' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_notes' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbNotes summary: Deletes the db note with the specified key operationId: DELETE-api-DbNotes(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbNotes: get: tags: - DbNotes summary: Retrieves all db notes operationId: GET-api-DbNotes produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_notes' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbNotes summary: Create a new db note operationId: POST-api-DbNotes produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_notes' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_notes' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_notes' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbPaymentMethods({id}): get: tags: - DbPaymentMethods summary: Retrieves the item of db payment methods with the specified key operationId: GET-api-DbPaymentMethods(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_payment_methods' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbPaymentMethods summary: Updates the item of db payment methods with the specified key operationId: PUT-api-DbPaymentMethods(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_payment_methods' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_payment_methods' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbPaymentMethods summary: Deletes the item of db payment methods with the specified key operationId: DELETE-api-DbPaymentMethods(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbPaymentMethods: get: tags: - DbPaymentMethods summary: Retrieves all items of db payment methods operationId: GET-api-DbPaymentMethods produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_payment_methods' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbPaymentMethods summary: Creates a new item within db payment methods operationId: POST-api-DbPaymentMethods produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_payment_methods' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_payment_methods' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_payment_methods' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/DbReport({id}): get: tags: - DbReport summary: Retrieves the db report with the specified key operationId: GET-api-DbReport(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_report' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - DbReport summary: Updates the db report with the specified key operationId: PUT-api-DbReport(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/db_report' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_report' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - DbReport summary: Deletes the db report with the specified key operationId: DELETE-api-DbReport(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/DbReport: get: tags: - DbReport summary: Retrieves all db Reports operationId: GET-api-DbReport produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_report' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - DbReport summary: Creates a new db report operationId: POST-api-DbReport produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/db_report' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_report' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/db_report' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/EmailNotification({id}): get: tags: - EmailNotification summary: Retrieves the email notification with the specified key operationId: GET-api-EmailNotification(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/email_notification' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/EmailNotification: get: tags: - EmailNotification summary: Retrieves all the email notification operationId: GET-api-EmailNotification produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/email_notification' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/EmailNotificationList({id}): get: tags: - EmailNotificationList summary: Retrieves the email notification list with the specified key operationId: GET-api-EmailNotificationList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/email_notification_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/EmailNotificationList: get: tags: - EmailNotificationList summary: Retrieves all the email notification list operationId: GET-api-EmailNotificationList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/email_notification_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/EquipmentBrand({id}): get: tags: - EquipmentBrand summary: Retrieves the equipment_brand object with the specified key operationId: GET-api-EquipmentBrand(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_brand' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - EquipmentBrand summary: Updates the equipment_brand object with the specified key operationId: PUT-api-EquipmentBrand(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/equipment_brand' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_brand' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - EquipmentBrand summary: Deletes the equipment_brand object with the specified key operationId: DELETE-api-EquipmentBrand(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/EquipmentBrand: get: tags: - EquipmentBrand summary: Retrieves all the equipment_brand objects operationId: GET-api-EquipmentBrand produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_brand' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - EquipmentBrand summary: Creates a new equipment_brand object operationId: POST-api-EquipmentBrand produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/equipment_brand' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_brand' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/equipment_brand' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/EquipmentFamily({id}): get: tags: - EquipmentFamily summary: Retrieves the equipment_family object with the specified key operationId: GET-api-EquipmentFamily(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_family' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - EquipmentFamily summary: Updates the equipment_family object with the specified key operationId: PUT-api-EquipmentFamily(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/equipment_family' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_family' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - EquipmentFamily summary: Deletes the equipment_family object with the specified key operationId: DELETE-api-EquipmentFamily(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/EquipmentFamily: get: tags: - EquipmentFamily summary: Retrieves all the equipment_family objects operationId: GET-api-EquipmentFamily produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_family' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - EquipmentFamily summary: Creates a new equipment_family object operationId: POST-api-EquipmentFamily produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/equipment_family' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_family' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/equipment_family' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/EquipmentModel({id}): get: tags: - EquipmentModel summary: Retrieves the equipment_model object with the specified key operationId: GET-api-EquipmentModel(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_model' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - EquipmentModel summary: Updates the equipment_model object with the specified key operationId: PUT-api-EquipmentModel(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/equipment_model' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_model' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - EquipmentModel summary: Deletes the equipment_model object with the specified key operationId: DELETE-api-EquipmentModel(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/EquipmentModel: get: tags: - EquipmentModel summary: Retrieves all the equipment_model objects operationId: GET-api-EquipmentModel produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_model' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - EquipmentModel summary: Creates a new equipment_model object operationId: POST-api-EquipmentModel produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/equipment_model' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/equipment_model' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/equipment_model' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/FeeList({id}): get: tags: - FeeList summary: Retrieves the fee list with the specified key operationId: GET-api-FeeList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/feelist' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - FeeList summary: Updates the fee list with the specified key operationId: PUT-api-FeeList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/feelist' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/feelist' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/FeeList: get: tags: - FeeList summary: Retrieves all the fee lists operationId: GET-api-FeeList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/feelist' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - FeeList summary: Creates a new fee list object operationId: POST-api-FeeList produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/feelist' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/feelist' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/feelist' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/FeeListPrice({id}): get: tags: - FeeListPrice summary: Retrieves the fee list price with the specified key operationId: GET-api-FeeListPrice(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/feelist_price' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - FeeListPrice summary: Updates the fee list price with the specified key operationId: PUT-api-FeeListPrice(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/feelist_price' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/feelist_price' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/FeeListPrice: get: tags: - FeeListPrice summary: Retrieves all the fee list prices operationId: GET-api-FeeListPrice produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/feelist_price' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - FeeListPrice summary: Creates a new fee list price object operationId: POST-api-FeeListPrice produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/feelist_price' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/feelist_price' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/feelist_price' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/HourType({id}): get: tags: - HourType summary: Retrieves the hour_type object with the specified key operationId: GET-api-HourType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/hour_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - HourType summary: Updates the hour_type object with the specified key operationId: PUT-api-HourType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/hour_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/hour_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - HourType summary: Deletes the hour_type object with the specified key operationId: DELETE-api-HourType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/HourType: get: tags: - HourType summary: Retrieves all the hour_type objects operationId: GET-api-HourType produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/hour_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - HourType summary: Creates a new hour_type object operationId: POST-api-HourType produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/hour_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/hour_type' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/hour_type' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/HourTypeGroup({id}): get: tags: - HourTypeGroup summary: Retrieves the hour_type_group object with the specified key operationId: GET-api-HourTypeGroup(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/hour_type_group' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - HourTypeGroup summary: Updates the hour_type_group object with the specified key operationId: PUT-api-HourTypeGroup(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/hour_type_group' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/hour_type_group' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - HourTypeGroup summary: Deletes the hour_type_group object with the specified key operationId: DELETE-api-HourTypeGroup(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/HourTypeGroup: get: tags: - HourTypeGroup summary: Retrieves all the hour_type_group objects operationId: GET-api-HourTypeGroup produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/hour_type_group' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - HourTypeGroup summary: Creates a new hour_type_group object operationId: POST-api-HourTypeGroup produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/hour_type_group' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/hour_type_group' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/hour_type_group' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Invoice({id}): get: tags: - Invoice summary: Get invoice using specific key. operationId: GET-api-Invoice(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/invoice' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Invoice: get: tags: - Invoice summary: Get all invoices operationId: GET-api-Invoice produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/invoice' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/InvoiceDetails({id}): get: tags: - InvoiceDetails summary: Get invoice details using specific key. operationId: GET-api-InvoiceDetails(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/invoice_details' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/InvoiceDetails: get: tags: - InvoiceDetails summary: Get all invoice details operationId: GET-api-InvoiceDetails produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/invoice_details' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/InvoiceView({id}): get: tags: - InvoiceView summary: Get invoice using specific key. operationId: GET-api-InvoiceView(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/invoice_view' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/InvoiceView: get: tags: - InvoiceView summary: Get all invoices operationId: GET-api-InvoiceView produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/invoice_view' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobApproval({id}): get: tags: - JobApproval summary: Retrieves the job approval with the specified key operationId: GET-api-JobApproval(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_approval' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobApproval: get: tags: - JobApproval summary: Retrieves all the job approvals operationId: GET-api-JobApproval produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_approval' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobEstimatedQuantity({id}): get: tags: - JobEstimatedQuantity summary: Retrieves the job_estimated_quantity with the specified key operationId: GET-api-JobEstimatedQuantity(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_estimated_quantity' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - JobEstimatedQuantity summary: Updates the job_estimated_quantity object with the specified key operationId: PUT-api-JobEstimatedQuantity(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/job_estimated_quantity' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_estimated_quantity' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - JobEstimatedQuantity summary: Deletes the job_estimated_quantity object with the specified key operationId: DELETE-api-JobEstimatedQuantity(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobEstimatedQuantity: get: tags: - JobEstimatedQuantity summary: Retrieves all the job_estimated_quantity objects operationId: GET-api-JobEstimatedQuantity produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_estimated_quantity' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - JobEstimatedQuantity summary: Creates a new job_estimated_quantity object operationId: POST-api-JobEstimatedQuantity produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/job_estimated_quantity' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_estimated_quantity' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/job_estimated_quantity' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/JobFiles({id}): get: tags: - JobFiles summary: Retrieves the job_files with the specified key operationId: GET-api-JobFiles(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_files' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - JobFiles summary: Update a job_files by supplying directly the field job_files.file_content as Byte Array operationId: PUT-api-JobFiles(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/job_files' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_files' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - JobFiles summary: Deletes the global job_files object (or files linked to entity but not JobApprovalPDF/OrderPDF/PurchaseOrderPDF) with the specified key operationId: DELETE-api-JobFiles(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobFiles/GetFileContent/{id}: get: tags: - JobFiles summary: Get the content of the file operationId: GET-api-JobFiles-GetFileContent-id produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_files' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobFiles: get: tags: - JobFiles summary: Retrieves all job_files operationId: GET-api-JobFiles produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_files' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - JobFiles summary: Creates a new job_files by supplying directly the field job_files.file_content as Byte Array operationId: POST-api-JobFiles produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/job_files' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_files' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/job_files' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/JobNonPartUsage({id}): get: tags: - JobNonPartUsage summary: Retrieves the job_non_part_usage object with the specified key operationId: GET-api-JobNonPartUsage(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_non_part_usage' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobNonPartUsage: get: tags: - JobNonPartUsage summary: Retrieves all the job_non_part_usage objects operationId: GET-api-JobNonPartUsage produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_non_part_usage' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobPartUsage({id}): get: tags: - JobPartUsage summary: Retrieves the used part with the specified key operationId: GET-api-JobPartUsage(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_part_usage' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobPartUsage: get: tags: - JobPartUsage summary: Retrieves all used parts operationId: GET-api-JobPartUsage produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_part_usage' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobPlanning({id}): get: tags: - JobPlanning summary: Get all job planning operationId: GET-api-JobPlanning(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_planning' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobPlanning: get: tags: - JobPlanning summary: Get job planning using specific key. operationId: GET-api-JobPlanning produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_planning' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobPriority({id}): get: tags: - JobPriority summary: Retrieves the job_priority object with the specified key operationId: GET-api-JobPriority(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_priority' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - JobPriority summary: Updates the job_priority object with the specified key operationId: PUT-api-JobPriority(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/job_priority' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_priority' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - JobPriority summary: Deletes the job_priority object with the specified key operationId: DELETE-api-JobPriority(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobPriority: get: tags: - JobPriority summary: Retrieves all the job_priority objects operationId: GET-api-JobPriority produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_priority' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - JobPriority summary: Creates a new job_priority object operationId: POST-api-JobPriority produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/job_priority' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_priority' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/job_priority' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Jobs({id}): get: tags: - Jobs summary: Retrieves the work order with the specified key operationId: GET-api-Jobs(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/jobs' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Jobs summary: Updates the work order with the specified key operationId: PUT-api-Jobs(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/jobs' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/jobs' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - Jobs summary: Deletes the work order with the specified key operationId: DELETE-api-Jobs(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Jobs/AddUsersAsWorkshopInQueue: post: tags: - Jobs summary: Force a job going to WorkshopInQueue and will assign to user in the list operationId: POST-api-Jobs-AddUsersAsWorkshopInQueue produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/jobs' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/jobs' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/jobs' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Jobs: get: tags: - Jobs summary: Retrieves all the work orders operationId: GET-api-Jobs produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/jobs' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Jobs summary: Creates a new work order operationId: POST-api-Jobs produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/jobs' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/jobs' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/jobs' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/JobStatus({id}): get: tags: - JobStatus summary: Retrieves the job status with the specified key operationId: GET-api-JobStatus(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_status' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - JobStatus summary: Updates the job status with the specified key operationId: PUT-api-JobStatus(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/job_status' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_status' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/JobStatus: get: tags: - JobStatus summary: Retrieves all job status operationId: GET-api-JobStatus produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_status' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - JobStatus summary: Creates a new job status operationId: POST-api-JobStatus produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/job_status' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_status' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/job_status' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/JobType({id}): get: tags: - JobType summary: Retrieves the work order type with the specified key operationId: GET-api-JobType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - JobType summary: Updates the work order type with the specified key operationId: PUT-api-JobType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/job_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - JobType summary: Deletes the work order type with the specified key operationId: DELETE-api-JobType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/JobType: get: tags: - JobType summary: Retrieves all work order types operationId: GET-api-JobType produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - JobType summary: Creates a new work order type operationId: POST-api-JobType produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/job_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_type' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/job_type' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/JobWorkInstructionList({id}): get: tags: - JobWorkInstructionList summary: Retrieves the job work instruction list with the specified key. operationId: GET-api-JobWorkInstructionList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_work_instruction_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - JobWorkInstructionList summary: Updates the job work instruction list with the specified key operationId: PUT-api-JobWorkInstructionList(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/job_work_instruction_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_work_instruction_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/JobWorkInstructionList: get: tags: - JobWorkInstructionList summary: Retrieves all the job work instruction list. operationId: GET-api-JobWorkInstructionList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_work_instruction_list' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - JobWorkInstructionList summary: Creates a new job work instruction list. operationId: POST-api-JobWorkInstructionList produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/job_work_instruction_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/job_work_instruction_list' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/job_work_instruction_list' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Language({id}): get: tags: - Language summary: Retrieves the language with the specified key operationId: GET-api-Language(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_language' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Language: get: tags: - Language summary: Retrieves all languages operationId: GET-api-Language produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/db_language' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Location({id}): get: tags: - Location summary: Retrieves an object of the specified key operationId: GET-api-Location(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/location' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Location summary: Updates the location object operationId: PUT-api-Location(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/location' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/location' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - Location summary: Deletes the object of the specified key operationId: DELETE-api-Location(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Location: get: tags: - Location summary: Retrieves all the locations operationId: GET-api-Location produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/location' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Location summary: Creates a new location object operationId: POST-api-Location produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/location' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/location' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/location' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/MarketingSegment({id}): get: tags: - MarketingSegment summary: Retrieves the type with the specified key operationId: GET-api-MarketingSegment(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/marketing_segment' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - MarketingSegment summary: Updates the type with the specified key /// operationId: PUT-api-MarketingSegment(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/marketing_segment' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/marketing_segment' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - MarketingSegment summary: Deletes the type with the specified key operationId: DELETE-api-MarketingSegment(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/MarketingSegment: get: tags: - MarketingSegment summary: Retrieves all the type operationId: GET-api-MarketingSegment produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/marketing_segment' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - MarketingSegment summary: Creates a new type operationId: POST-api-MarketingSegment produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/marketing_segment' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/marketing_segment' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/marketing_segment' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Project({id}): get: tags: - Project summary: Retrieves the project with the specified key operationId: GET-api-Project(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/project' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Project summary: Updates the project with the specified key operationId: PUT-api-Project(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/project' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/project' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - Project summary: Deletes the project with the specified key operationId: DELETE-api-Project(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Project: get: tags: - Project summary: Retrieves all the projects operationId: GET-api-Project produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/project' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Project summary: Creates a new project operationId: POST-api-Project produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/project' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/project' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/project' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/ProjectStatus({id}): get: tags: - ProjectStatus summary: Retrieves the project status with the specified key operationId: GET-api-ProjectStatus(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/project_status' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - ProjectStatus summary: Updates the project status with the specified key operationId: PUT-api-ProjectStatus(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/project_status' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/project_status' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - ProjectStatus summary: Deletes the project status with the specified key operationId: DELETE-api-ProjectStatus(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/ProjectStatus: get: tags: - ProjectStatus summary: Retrieves project statuses operationId: GET-api-ProjectStatus produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/project_status' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - ProjectStatus summary: Creates a new project status operationId: POST-api-ProjectStatus produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/project_status' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/project_status' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/project_status' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/PurchaseOrder({id}): get: tags: - PurchaseOrder summary: Retrieves the purchase order with the specified key operationId: GET-api-PurchaseOrder(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/purchase_order' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - PurchaseOrder summary: Updates the purchase order with the specified key operationId: PUT-api-PurchaseOrder(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/purchase_order' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/purchase_order' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - PurchaseOrder summary: Deletes the purchase order with the specified key operationId: DELETE-api-PurchaseOrder(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/PurchaseOrder: get: tags: - PurchaseOrder summary: Retrieves all the purchase orders operationId: GET-api-PurchaseOrder produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/purchase_order' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - PurchaseOrder summary: Creates a new purchase order operationId: POST-api-PurchaseOrder produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/purchase_order' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/purchase_order' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/purchase_order' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/PurchaseOrderDetails({id}): get: tags: - PurchaseOrderDetails summary: Retrieves the purchase order order lines with the specified key operationId: GET-api-PurchaseOrderDetails(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/purchase_order_details' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - PurchaseOrderDetails summary: Updates the purchase order order lines with the specified key operationId: PUT-api-PurchaseOrderDetails(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/purchase_order_details' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/purchase_order_details' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - PurchaseOrderDetails summary: Deletes the purchase order order lines with the specified key operationId: DELETE-api-PurchaseOrderDetails(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/PurchaseOrderDetails: get: tags: - PurchaseOrderDetails summary: Retrieves all the purchase order order lines operationId: GET-api-PurchaseOrderDetails produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/purchase_order_details' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - PurchaseOrderDetails summary: Creates a new purchase order order line operationId: POST-api-PurchaseOrderDetails produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/purchase_order_details' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/purchase_order_details' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/purchase_order_details' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/SalesOrganization({id}): get: tags: - SalesOrganization summary: Retrieves organization with the specified key operationId: GET-api-SalesOrganization(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/sales_organization' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - SalesOrganization summary: Updates the organization with the specified key /// operationId: PUT-api-SalesOrganization(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/sales_organization' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/sales_organization' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - SalesOrganization summary: Deletes the organization with the specified key operationId: DELETE-api-SalesOrganization(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/SalesOrganization: get: tags: - SalesOrganization summary: Retrieves all organizations operationId: GET-api-SalesOrganization produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/sales_organization' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - SalesOrganization summary: Creates a new organization operationId: POST-api-SalesOrganization produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/sales_organization' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/sales_organization' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/sales_organization' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/SalesTerritory({id}): get: tags: - SalesTerritory summary: Retrieves the territory with the specified key operationId: GET-api-SalesTerritory(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/sales_territory' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - SalesTerritory summary: Updates the territory with the specified key /// operationId: PUT-api-SalesTerritory(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/sales_territory' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/sales_territory' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - SalesTerritory summary: Deletes the territory with the specified key operationId: DELETE-api-SalesTerritory(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/SalesTerritory: get: tags: - SalesTerritory summary: Retrieves all territories operationId: GET-api-SalesTerritory produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/sales_territory' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - SalesTerritory summary: Creates a new territory operationId: POST-api-SalesTerritory produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/sales_territory' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/sales_territory' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/sales_territory' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Skill({id}): get: tags: - Skill summary: Retrieves the skill with the specified key operationId: GET-api-Skill(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/skill' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Skill summary: Updates the skill with the specified key operationId: PUT-api-Skill(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/skill' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/skill' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - Skill summary: Deletes the skill with the specified key operationId: DELETE-api-Skill(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/Skill: get: tags: - Skill summary: Retrieves all skills operationId: GET-api-Skill produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/skill' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Skill summary: Creates a new skill operationId: POST-api-Skill produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/skill' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/skill' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/skill' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Task({id}): get: tags: - Task summary: Retrieves the task with the specified key operationId: GET-api-Task(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - Task summary: Updates the task with the specified key operationId: PUT-api-Task(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/task' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/TaskActivity({id}): get: tags: - TaskActivity summary: Retrieves the task activity with the specified key operationId: GET-api-TaskActivity(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_activity' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - TaskActivity summary: Updates the task activity with the specified key operationId: PUT-api-TaskActivity(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/task_activity' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_activity' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/TaskActivity: get: tags: - TaskActivity summary: Retrieves all the task activities operationId: GET-api-TaskActivity produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_activity' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - TaskActivity summary: Creates a new task activity operationId: POST-api-TaskActivity produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/task_activity' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_activity' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/task_activity' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/TaskActivityLog({id}): get: tags: - TaskActivityLog summary: Retrieves the task_activity_log with the specified key operationId: GET-api-TaskActivityLog(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_activity_log' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - TaskActivityLog summary: Updates the task_activity_log with the specified key operationId: PUT-api-TaskActivityLog(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/task_activity_log' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_activity_log' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/TaskActivityLog: get: tags: - TaskActivityLog summary: Retrieves all the task_activity_log operationId: GET-api-TaskActivityLog produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_activity_log' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - TaskActivityLog summary: Creates a new task_activity_log operationId: POST-api-TaskActivityLog produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/task_activity_log' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_activity_log' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/task_activity_log' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/Task: get: tags: - Task summary: Retrieves all the tasks operationId: GET-api-Task produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - Task summary: Creates a new task operationId: POST-api-Task produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/task' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/task' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/TaskFiles({id}): get: tags: - TaskFiles summary: Retrieves the task_files with the specified key operationId: GET-api-TaskFiles(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_files' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - TaskFiles summary: Update a task_files by supplying directly the field task_files.file_content as Byte Array operationId: PUT-api-TaskFiles(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/task_files' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_files' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - TaskFiles summary: Deletes the global task_files object with the specified key operationId: DELETE-api-TaskFiles(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/TaskFiles/GetFileContent/{id}: get: tags: - TaskFiles summary: Get the content of the file operationId: GET-api-TaskFiles-GetFileContent-id produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_files' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/TaskFiles: get: tags: - TaskFiles summary: Retrieves all task_files operationId: GET-api-TaskFiles produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_files' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - TaskFiles summary: Creates a new task_files by supplying directly the field task_files.file_content as Byte Array operationId: POST-api-TaskFiles produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/task_files' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_files' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/task_files' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/TaskPriority({id}): get: tags: - TaskPriority summary: Retrieves the task priority with the specified key operationId: GET-api-TaskPriority(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_priority' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - TaskPriority summary: Updates the task priority with the specified key operationId: PUT-api-TaskPriority(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/task_priority' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_priority' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - TaskPriority summary: Deletes the task priority with the specified key operationId: DELETE-api-TaskPriority(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/TaskPriority: get: tags: - TaskPriority summary: Retrieves all task priorities operationId: GET-api-TaskPriority produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_priority' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - TaskPriority summary: Creates a new task priority operationId: POST-api-TaskPriority produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/task_priority' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_priority' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/task_priority' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/TaskStatus({id}): get: tags: - TaskStatus summary: Retrieves the task status with the specified key operationId: GET-api-TaskStatus(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_status' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - TaskStatus summary: Updates the task status with the specified key operationId: PUT-api-TaskStatus(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/task_status' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_status' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - TaskStatus summary: Deletes the task status with the specified key operationId: DELETE-api-TaskStatus(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/TaskStatus: get: tags: - TaskStatus summary: Retrieves all task status operationId: GET-api-TaskStatus produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_status' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - TaskStatus summary: Creates a new task status operationId: POST-api-TaskStatus produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/task_status' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_status' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/task_status' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/TaskType({id}): get: tags: - TaskType summary: Retrieves the task type with the specified key operationId: GET-api-TaskType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - TaskType summary: Updates the task type with the specified key operationId: PUT-api-TaskType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/task_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred delete: tags: - TaskType summary: Deletes the task type with the specified key operationId: DELETE-api-TaskType(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 204: description: Request has been successfully processed and that the response is intentionally blank 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/TaskType: get: tags: - TaskType summary: Retrieves all task types operationId: GET-api-TaskType produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_type' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - TaskType summary: Creates a new task type operationId: POST-api-TaskType produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/task_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/task_type' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/task_type' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/User({id}): get: tags: - User summary: Retrieves the user with the specified key operationId: GET-api-User(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred put: tags: - User summary: Updates the user with the specified key operationId: PUT-api-User(id) produces: - application/json - application/xml parameters: - name: id in: path required: true type: string format: guid - in: body name: body required: true schema: $ref: '#/definitions/user' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 409: description: The request could not be completed due to a conflict with the current state of the resource 500: description: While processing your request some unknown error occurred /api/User/Me: get: tags: - User summary: Get method to return the login and domain of current authorization value. Fields returned are Domain and User operationId: GET-api-User-Me produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred /api/User: get: tags: - User summary: Retrieves all users operationId: GET-api-User produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you are not allowed to views the requested resources 404: description: Either you forgot to indicate the version or you have entered an incorrect url 500: description: While processing your request some unknown error occurred post: tags: - User summary: Creates a new user operationId: POST-api-User produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/user' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/user' 401: description: you did not include your credentials or you are not allowed to views the requested resources 409: description: The request could not be completed due to a conflict w