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: 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: 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: 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: 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/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/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/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/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 with the current state of the resource 500: description: While processing your request some unknown error occurred /api/UserGroup({id}): get: tags: - UserGroup summary: Retrieves the user group with the specified key operationId: GET-api-UserGroup(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_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: - UserGroup summary: Updates the user group with the specified key operationId: PUT-api-UserGroup(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_group' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_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 /api/UserGroup: get: tags: - UserGroup summary: Retrieves all user group operationId: GET-api-UserGroup produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_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: - UserGroup summary: Creates a new user group operationId: POST-api-UserGroup produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/user_group' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_group' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/user_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/UserPlanningSlot({id}): get: tags: - UserPlanningSlot summary: Retrieves the user_planning_slot with the specified key operationId: GET-api-UserPlanningSlot(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_planning_slot' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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: - UserPlanningSlot summary: Updates the user_planning_slot with the specified key operationId: PUT-api-UserPlanningSlot(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_planning_slot' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_planning_slot' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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: - UserPlanningSlot summary: Deletes the user_planning_slot with the specified key operationId: DELETE-api-UserPlanningSlot(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/UserPlanningSlot: get: tags: - UserPlanningSlot summary: Retrieves all the user_planning_slot operationId: GET-api-UserPlanningSlot produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_planning_slot' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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: - UserPlanningSlot summary: Creates a new user_planning_slot operationId: POST-api-UserPlanningSlot produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/user_planning_slot' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_planning_slot' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/user_planning_slot' 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/UserPlanningSlotType({id}): get: tags: - UserPlanningSlotType summary: Retrieves the user_planning_slot_type with the specified key operationId: GET-api-UserPlanningSlotType(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_planning_slot_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: - UserPlanningSlotType summary: Updates the user_planning_slot_type with the specified key operationId: PUT-api-UserPlanningSlotType(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_planning_slot_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_planning_slot_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: - UserPlanningSlotType summary: Deletes the user_planning_slot_type with the specified key operationId: DELETE-api-UserPlanningSlotType(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/UserPlanningSlotType: get: tags: - UserPlanningSlotType summary: Retrieves all the user_planning_slot_type operationId: GET-api-UserPlanningSlotType produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_planning_slot_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: - UserPlanningSlotType summary: Creates a new user_planning_slot_type operationId: POST-api-UserPlanningSlotType produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/user_planning_slot_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_planning_slot_type' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/user_planning_slot_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/UserSalesOrganizationList({id}): get: tags: - UserSalesOrganizationList summary: Retrieves the user_sales_organization_list object with the specified key operationId: GET-api-UserSalesOrganizationList(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_sales_organization_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: - UserSalesOrganizationList summary: Updates the user_sales_organization_list object with the specified key operationId: PUT-api-UserSalesOrganizationList(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_sales_organization_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_sales_organization_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: - UserSalesOrganizationList summary: Deletes the user_sales_organization_list object with the specified key operationId: DELETE-api-UserSalesOrganizationList(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/UserSalesOrganizationList: get: tags: - UserSalesOrganizationList summary: Retrieves all the user_sales_organization_list objects operationId: GET-api-UserSalesOrganizationList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_sales_organization_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: - UserSalesOrganizationList summary: Creates a new user_sales_organization_list object operationId: POST-api-UserSalesOrganizationList produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/user_sales_organization_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_sales_organization_list' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/user_sales_organization_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/UserSalesTerritoryList({id}): get: tags: - UserSalesTerritoryList summary: Retrieves the user_sales_territory_list object with the specified key operationId: GET-api-UserSalesTerritoryList(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_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: - UserSalesTerritoryList summary: Updates the user_sales_territory_list object with the specified key operationId: PUT-api-UserSalesTerritoryList(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_sales_territory_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_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: - UserSalesTerritoryList summary: Deletes the user_sales_territory_list object with the specified key operationId: DELETE-api-UserSalesTerritoryList(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/UserSalesTerritoryList: get: tags: - UserSalesTerritoryList summary: Retrieves all the user_sales_territory_list objects operationId: GET-api-UserSalesTerritoryList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_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: - UserSalesTerritoryList summary: Creates a new user_sales_territory_list object operationId: POST-api-UserSalesTerritoryList produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/user_sales_territory_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_sales_territory_list' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/user_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/UserSkillList({id}): get: tags: - UserSkillList summary: Retrieves the user_skill_list object with the specified key operationId: GET-api-UserSkillList(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_skill_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: - UserSkillList summary: Updates the user_skill_list object with the specified key operationId: PUT-api-UserSkillList(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_skill_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_skill_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: - UserSkillList summary: Deletes the user_skill_list object with the specified key operationId: DELETE-api-UserSkillList(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/UserSkillList: get: tags: - UserSkillList summary: Retrieves all the user_skill_list objects operationId: GET-api-UserSkillList produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_skill_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: - UserSkillList summary: Creates a new user_skill_list object operationId: POST-api-UserSkillList produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/user_skill_list' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_skill_list' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/user_skill_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/UserTimesheet({id}): get: tags: - UserTimesheet summary: Retrieves a user timesheet with the specified key operationId: GET-api-UserTimesheet(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_timesheet' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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/UserTimesheet: get: tags: - UserTimesheet summary: No description operationId: GET-api-UserTimesheet produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_timesheet' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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/UserUnavailability({id}): get: tags: - UserUnavailability summary: Retrieves the unavailability with the specified key operationId: GET-api-UserUnavailability(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_unavailability' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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: - UserUnavailability summary: Updates the unavailability with the specified key operationId: PUT-api-UserUnavailability(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_unavailability' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_unavailability' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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: - UserUnavailability summary: Deletes the unavailability with the specified key operationId: DELETE-api-UserUnavailability(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/UserUnavailability: get: tags: - UserUnavailability summary: Retrieves all unavailabilities operationId: GET-api-UserUnavailability produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_unavailability' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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: - UserUnavailability summary: Creates a new unavailability operationId: POST-api-UserUnavailability produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/user_unavailability' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_unavailability' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/user_unavailability' 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/UserUnavailabilityType({id}): get: tags: - UserUnavailabilityType summary: Retrieves the unavailability type with the specified key operationId: GET-api-UserUnavailabilityType(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_unavailability_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: - UserUnavailabilityType summary: Updates the unavailability type with the specified key operationId: PUT-api-UserUnavailabilityType(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_unavailability_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_unavailability_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: - UserUnavailabilityType summary: Deletes the unavailability type with the specified key operationId: DELETE-api-UserUnavailabilityType(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/UserUnavailabilityType: get: tags: - UserUnavailabilityType summary: Retrieves all unavailability types operationId: GET-api-UserUnavailabilityType produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_unavailability_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: - UserUnavailabilityType summary: Creates a new unavailability type operationId: POST-api-UserUnavailabilityType produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/user_unavailability_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_unavailability_type' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/user_unavailability_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/UserWeekApproval({id}): get: tags: - UserWeekApproval summary: Retrieves a user week approval with the specified key operationId: GET-api-UserWeekApproval(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_week_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/UserWeekApproval: get: tags: - UserWeekApproval summary: Retrieves all the user week approval operationId: GET-api-UserWeekApproval produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/user_week_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/WorkInstruction({id}): get: tags: - WorkInstruction summary: Retrieves the work instruction with the specified key. operationId: GET-api-WorkInstruction(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/work_instruction' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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: - WorkInstruction summary: Updates the work instruction with the specified key operationId: PUT-api-WorkInstruction(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/work_instruction' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/work_instruction' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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/WorkInstructionActionType({id}): get: tags: - WorkInstructionActionType summary: Retrieves the work instraction action type with the specified key operationId: GET-api-WorkInstructionActionType(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/work_instruction_action_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: - WorkInstructionActionType summary: Updates the work instruction action type with the specified key operationId: PUT-api-WorkInstructionActionType(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/work_instruction_action_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/work_instruction_action_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 /api/WorkInstructionActionType: get: tags: - WorkInstructionActionType summary: Retrieves all work instruction action types operationId: GET-api-WorkInstructionActionType produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/work_instruction_action_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: - WorkInstructionActionType summary: Creates a new work instruction action type operationId: POST-api-WorkInstructionActionType produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/work_instruction_action_type' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/work_instruction_action_type' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/work_instruction_action_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/WorkInstruction: get: tags: - WorkInstruction summary: Retrieves all the work instructions. operationId: GET-api-WorkInstruction produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/work_instruction' 400: description: The entity you passed has missing or invalid field values (you can see the validation exception in the http response) 401: description: you did not include your credentials or you 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: - WorkInstruction summary: Creates a new work instruction. operationId: POST-api-WorkInstruction produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/work_instruction' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/work_instruction' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/work_instruction' 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/WorkInstructionDetails({id}): get: tags: - WorkInstructionDetails summary: Retrieves the work instruction details with the specified key. operationId: GET-api-WorkInstructionDetails(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/work_instruction_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: - WorkInstructionDetails summary: Updates the work instruction details with the specified key operationId: PUT-api-WorkInstructionDetails(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/work_instruction_details' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/work_instruction_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 /api/WorkInstructionDetails: get: tags: - WorkInstructionDetails summary: Retrieves all the work instructions details. operationId: GET-api-WorkInstructionDetails produces: - application/json - application/xml parameters: [] responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/work_instruction_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: - WorkInstructionDetails summary: Creates a new work instruction details. operationId: POST-api-WorkInstructionDetails produces: - application/json - application/xml parameters: - in: body name: body required: true schema: $ref: '#/definitions/work_instruction_details' responses: 200: description: Your request was processed successfully schema: $ref: '#/definitions/work_instruction_details' 201: description: Your request resulted in a new resource created schema: $ref: '#/definitions/work_instruction_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 definitions: api_log: type: object properties: id: type: string format: guid description: 'Primary key' date_create_utc: type: string format: date-time description: 'Creation date of the log, in UTC format' api_version: type: string description: 'Api version Max length: 50' api_type: type: string description: 'Api type, Automatically filled by "ODSAPI" Max length: 50' http_method: type: string description: 'Request Http Method (like GET,POST,PUT,DELETE) Max length: 50' url: type: string description: 'Full Request Url (including the ODATA Query String) Max length: 4000' user_username: type: string description: 'Username of the request (based on the request.Headers Authorization tag) Max length: 255' request_headers: type: string description: 'Headers of the request (but without the key "Authorization") Max length: 4000' request_body: type: string description: 'Body of the request as it has been sent by the Client' request_controller: type: string description: 'Requested Controller, like Company, Article, ... Max length: 255' request_ip: type: string description: 'IP Address of the client that send the request Max length: 255' response_code: type: integer format: int32 description: 'HTTP Response Code returned by the API' response_headers: type: string description: 'Response Headers returned by the API Max length: 4000' response_body: type: string description: 'Response Body returned by the API' time_needed: type: integer format: int32 description: 'Time Needed in milliseconds' is_error: type: boolean description: 'Is Error' article: type: object required: - id - name properties: id: type: string format: guid description: 'Primary Key' article_category_id: type: string format: guid description: 'Foreign key to article category' article_category: $ref: '#/definitions/article_category' article_category_code: type: string description: 'Embedded entity "article_category" using ERP PK when adding/updating article' article_group_1_id: type: string format: guid description: 'Foreign key to article_group_1' article_group_1_code: type: string description: 'Embedded entity "article_group_1" using ERP PK when adding/updating article' article_group_1: $ref: '#/definitions/article_group_1' article_group_2_id: type: string format: guid description: 'Foreign key to article_group_2' article_group_2_code: type: string description: 'Embedded entity "article_group_2" using ERP PK when adding/updating article' article_group_2: $ref: '#/definitions/article_group_2' article_group_3_id: type: string format: guid description: 'Foreign key to article_group_3' article_group_3_code: type: string description: 'Embedded entity "article_group_3" using ERP PK when adding/updating article' article_group_3: $ref: '#/definitions/article_group_3' article_group_4_id: type: string format: guid description: 'Foreign key to article_group_4' article_group_4_code: type: string description: 'Embedded entity "article_group_4" using ERP PK when adding/updating article' article_group_4: $ref: '#/definitions/article_group_4' article_group_5_id: type: string format: guid description: 'Foreign key to article_group_5' article_group_5_code: type: string description: 'Embedded entity "article_group_5" using ERP PK when adding/updating article' article_group_5: $ref: '#/definitions/article_group_5' article_group_6_id: type: string format: guid description: 'Foreign key to article_group_6' article_group_6_code: type: string description: 'Embedded entity "article_group_6" using ERP PK when adding/updating article' article_group_6: $ref: '#/definitions/article_group_6' physical_stock: type: integer format: int32 description: 'Physical stock from the ERP (used for Eco Stock)' back_order_client: type: integer format: int32 description: 'Number of pieces reserved for clients (used for Eco Stock)' back_order_supplier: type: integer format: int32 description: 'Number of pieces that should arrive from the supplier (used for Eco stock if expected delivery is in the past)' expected_delivery_date_bo_supplier: type: string format: date-time description: 'Date when the delivery from the supplier should arrive (used for Eco stock)' article_increment: type: integer format: int32 description: 'For Sales : Increment used to order (by 2, by 4 etc)' min_article_quantity: type: integer format: int32 description: 'For Sales : Minimum amount to be ordered' entered_price: type: number format: decimal description: 'Standard article price' cost_price: type: number format: single no_stock: type: boolean description: 'For Sales : Disables the stock check' archived: type: boolean description: 'Archives an article (cannot be deleted)' is_travel_fee: type: boolean description: 'Indicate that this article will be used to compute the fee based on the car travel time' is_mileage_fee: type: boolean description: 'Indicate that this article will be used to compute the fee based on the distance.' code: type: string description: 'The Id/Ref of the back office. Used by Embedded entity Max length: 50' name: type: string description: 'Name of the article Max length: 50' description_short: type: string description: 'Description (if exists, otherwhise name will be used) Max length: 100' description_long: type: string description: 'Long description' barcode: type: string description: 'Barcode of the article (fast search) Max length: 50' notes: type: string description: 'Notes (remark, details) Max length: 255' date_create: type: string format: date-time description: 'Creation date, auto filled by Now if no value received' date_update: type: string format: date-time description: 'Update date, auto filled by Now if no value received' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' article_color_id: type: string format: guid description: 'Foreign key to article_color' article_color_code: type: string description: 'Embedded entity "article_color" using ERP PK when adding/updating article' article_color: $ref: '#/definitions/article_color' warranty_period_nb_months: type: integer format: int32 description: 'warranty_period_nb_months' use_serial: type: boolean description: 'use_serial' _replace_id: type: string format: guid description: 'Foreign key to article that replace the current article' replace_article: $ref: '#/definitions/article' replace_article_code: type: string description: 'Embedded code "article" of replace, when adding/updating article' db_unit_of_measure_id_selling: type: string format: guid description: 'Applicable db_unit_of_measure' db_unit_of_measure_code_selling: type: string description: 'Applicable db_unit_of_measure' translations: type: list`1 format: list`1 description: 'List of translation of specific field name' article_category: type: object required: - id - name properties: id: type: string format: guid description: 'Primary Key' parent_id: type: string format: guid description: 'Parent Article Category (Parent / Child)' parent_code: type: string description: 'Embedded entity "article_category" for parent using ERP PK when adding/updating article_category' parent_article_category: $ref: '#/definitions/article_category' code: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 50' name: type: string description: 'Name of the article category Max length: 50' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by the database, filled with GetUtcDate when adding,updating' article_color: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string code: type: string modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' article_group_1: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the Group item Max length: 255' code: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 255' article_group_2: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the Group item Max length: 255' code: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 255' article_group_3: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the Group item Max length: 255' code: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 255' article_group_4: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the Group item Max length: 255' code: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 255' article_group_5: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the Group item Max length: 255' code: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 255' article_group_6: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the Group item Max length: 255' code: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 255' article_price_label: type: object required: - id - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of article price label' code: type: string description: 'Code of article price label' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' article_price_list: type: object required: - id - price properties: id: type: string format: guid description: 'Primary Key' article_id: type: string format: guid description: 'Foreign key of article Optionally required : article_id, article_code or article must be provided' article_code: type: string description: 'Embedded entity "article" using ERP PK when adding/updating Optionally required : article_id, article_code or article must be provided' article: $ref: '#/definitions/article' article_price_label_id: type: string format: guid description: 'Foreign key of article price label Optionally required : article_price_label_id or article_price_label must be provided' article_price_label: $ref: '#/definitions/article_price_label' price: type: number format: decimal description: 'Article price, If value not given set as 0.' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' article_status_list: type: object required: - article_status_id - sales_organization_id properties: id: type: string format: guid description: 'Primary Key' article_status_id: type: string format: guid description: 'Foreign key of the article_status' article_id: type: string format: guid description: 'Foreign key of article Optionally required : article_id, article_code or article must be provided' article_code: type: string description: 'Embedded entity "article" using ERP PK when adding/updating Optionally required : article_id, article_code or article must be provided' article: $ref: '#/definitions/article' sales_organization_id: type: string format: guid modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' article_stock_location: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the article stock location Max length: 64' sequence: type: integer format: int32 description: 'Sorting field (0 first), to order them' city: type: string description: 'Address:City Max length: 50' street: type: string description: 'Address:Street Max length: 50' street2: type: string description: 'Address:Street2 Max length: 50' street_number: type: string description: 'Address:Street Number. If your ERP doesn"t have this field, then only use field "street" and disable the street number on Odyssee/Admin/Impl Settings/Global Settings:Hide Street Number Max length: 50' zip: type: string description: 'Address:Zip Max length: 50' db_country_id: type: string format: guid description: 'Address:Country' db_country_code: type: string description: 'Address:CountryCode entity using international code when adding/updating article_stock_location' reference_back_office: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 255' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' linked_db_table_id: type: string format: guid description: 'Foreign key to the table that is linked to this stock (like car or company) using Guid' linked_db_table_name: type: string description: 'Foreign key to the table that is linked to this stock (Allowed is car or company) using table name' linked_car_id: type: string format: guid description: 'Foreign key to the object id that is linked to this stock (car.id) using Guid' linked_car_reference_back_office: type: string description: 'Embedded entity "car" (when the linked object is a car) using ERP PK when adding/updating article_stock_locatioon' linked_car: $ref: '#/definitions/car' linked_company_id: type: string format: guid description: 'Foreign key to the object id that is linked to this stock (company.id) using Guid' linked_company_code: type: string description: 'Embedded entity "company" (when the linked object is a company) using ERP PK when adding/updating article_stock_locatioon' linked_company: $ref: '#/definitions/company' article_stock_location_list: type: object required: - quantity properties: id: type: string format: guid description: 'Primary Key' article_stock_location_id: type: string format: guid description: 'Foreign key of the article_stock_location Optionally required : article_stock_location_id, article_stock_location_reference_back_office or article_stock_location must be provided' article_stock_location_reference_back_office: type: string description: ' Optionally required : article_stock_location_id, article_stock_location_reference_back_office or article_stock_location must be provided' article_stock_location: $ref: '#/definitions/article_stock_location' article_id: type: string format: guid description: 'Foreign key of article Optionally required : article_id, article_code or article must be provided' article_code: type: string description: 'Embedded entity "article" using ERP PK when adding/updating Optionally required : article_id, article_code or article must be provided' article: $ref: '#/definitions/article' quantity: type: integer format: int32 description: 'Quantity in stock for this article, for this stock' reference_back_office: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 255' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' car: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the car Max length: 64' licence_plate: type: string description: 'Licence Plate Of the car' initial_km: type: integer format: int32 description: 'Actual KM value of the car before starting to add car travel on odyssee' reference_back_office: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 255' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' car_travel: type: object required: - user_id - car_id - hour_type_id - date_from_rounded - date_to_rounded - to_travel_type_code properties: id: type: string format: guid description: 'Primary Key' user_id: type: string format: guid description: 'Foreign key of User' car_id: type: string format: guid description: 'Foreign key of Car' hour_type_id: type: string format: guid description: 'Foreign key of the hour type' date_from_rounded: type: string format: date-time description: 'Date+Time travel FROM' date_to_rounded: type: string format: date-time description: 'Date+Time travel TO' notes: type: string description: 'Additional notes field' to_travel_type_code: type: string description: 'Kind of travel. Can be' is_approved: type: boolean description: 'Inform if this user_timesheet belongs to a week approved (readonly)' property_1_checked: type: boolean description: 'True/False status of property 1' property_2_checked: type: boolean description: 'True/False status of property 2' property_3_checked: type: boolean description: 'True/False status of property 3' property_4_checked: type: boolean description: 'True/False status of property 4' property_5_checked: type: boolean description: 'True/False status of property 5' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' km_distance: type: integer format: int32 description: 'Distance traveled' km_private: type: integer format: int32 description: 'Personal distance traveled' from_travel_type_code: type: string description: 'Travel type when going to location' from_db_table_name: type: string description: 'Value of linked table' from_id_in_table: type: string format: guid description: 'Foreign key to object traveling from' to_db_table_name: type: string description: 'Value of linked table' to_id_in_table: type: string format: guid description: 'Foreign key to object traveling from' company: type: object required: - id - name properties: id: type: string format: guid description: 'Primary Key' is_client: type: boolean description: 'SALES : Indicate if can be used for ordering' is_supplier: type: boolean description: 'SERVICES : indicate if this company is a supplier' archived: type: boolean description: 'Archive this company to not have it anymore on the search' name: type: string description: ' Max length: 64' notes: type: string description: 'Notes/Remark field' create_date: type: string format: date-time description: 'Creation date+time' sales_territory_id: type: string format: guid description: 'Territory of the company (Sales+Services).If more than one sales_territory exists, then it must be filled' sales_territory_code: type: string description: 'Embedded entity "sales_territory" using ERP PK when adding/updating company' sales_territory: $ref: '#/definitions/sales_territory' marketing_segment_id: type: string format: guid description: 'Marketing Segment of the company (Sales (Visit frequency logic) +Services (Planning Jobs To Be Planned) )' marketing_segment_code: type: string description: 'Embedded entity "marketing_segment" using ERP PK when adding/updating company' marketing_segment: $ref: '#/definitions/marketing_segment' sales_organization_id: type: string format: guid description: 'Organization on which belongs the company.If more than one sales_organization exists, then it must be filled' sales_organization_code: type: string description: 'Embedded entity "sales_organization" using ERP PK when adding/updating company' sales_organization: $ref: '#/definitions/sales_organization' company_sales_status_code: type: string description: 'Foreign key of company_sales_status using code. Use "Normal,CreditRisk, BlockedbyCM or OrderBlocked"' vat_reg_code: type: string description: 'VAT number Max length: 50' is_working_address: type: boolean description: 'Services : If False, you cannot create project/installation on this company.Default=true' parent_id: type: string format: guid description: 'Reference to a parent company (in case of Child/Parent) when adding/updating company' parent_company_code: type: string description: 'Embedded entity "company" for parent (in case of Child/Parent) using ERP PK when adding/updating company' parent_company: $ref: '#/definitions/company' phone: type: string description: 'Phone number of the company Max length: 50' fax: type: string description: 'Fax number of the company Max length: 50' url: type: string description: 'URL of the company website Max length: 255' email: type: string description: 'email Max length: 250' street: type: string description: 'Address:Street Max length: 100' street_number: type: string description: 'Address:Street Number. If your ERP doesn"t have this field, then only use field "street" and disable the street number on Odyssee/Admin/Impl Settings/Global Settings:Hide Street Number Max length: 50' city: type: string description: 'Address:City Max length: 50' zip: type: string description: 'Address:Zip Max length: 50' db_country_id: type: string format: guid description: 'Address:Country' db_country_code: type: string description: 'Address:CountryCode entity using international code when adding/updating company' feelist_id: type: string format: guid description: 'FeeList activated for the company (On Service, Feelist determines the price of the invoicable timesheets)' feelist_reference_back_office: type: string description: 'Embedded entity "feelist" using ERP PK when adding/updating company' feelist: $ref: '#/definitions/feelist' company_type_id: type: string format: guid description: 'Company Type' company_type_name: type: string description: 'Embedded entity "company_type" using ERP PK when adding/updating company' company_type: $ref: '#/definitions/company_type' db_language_id: type: string format: guid description: 'Language of the company.If empty, will use the default on the system' db_language_code: type: string description: 'Language code entity using international isocode when adding/updating company' code: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 50' article_price_label_id: type: string format: guid description: 'Foreign key of article price label' article_price_label_code: type: string description: 'Embedded entity "article price label" using ERP PK when adding/updating' article_price_label: $ref: '#/definitions/article_price_label' db_payment_method_id: type: string format: guid description: 'Embedded entity "db payment methods" using ERP PK when adding/updating company' db_payment_method_reference_back_office: type: string description: 'Embedded entity "db payment methods" using ERP PK when adding/updating company' db_payment_methods: $ref: '#/definitions/db_payment_methods' company_sector_id: type: string format: guid description: 'Foreign key to company_sector' company_sector_code: type: string description: 'Embedded code for the company_sector using ERP PK when adding/updating' company_sector: $ref: '#/definitions/company_sector' is_lead: type: boolean description: 'Indicate that company is not already a customer' is_subcontractor: type: boolean description: 'For Service, that company is one of your subcontractors' latitude: type: number format: decimal description: 'Decimal coordonate for the latitude. (-1;-1) means invalid and (0;0) means not already geo-encoded' longitude: type: number format: decimal description: 'Decimal coordonate for the longitude. (-1;-1) means invalid and (0;0) means not already geo-encoded' street2: type: string description: 'Additional information on the address not part of the postal address' bic_code: type: string description: 'bic code' specialities: type: string description: 'specialities' register_number: type: string description: 'register_number' register_city: type: string description: 'register_city' bankaccount: type: string description: 'Bank account of the company.' mobile: type: string description: 'Mobile number of the company Max length: 50' service_manager_user_id: type: string format: guid description: 'ID of the service manager. Auto selected user when creating location, installation. Used also inside communication and tags' service_manager_user_code: type: string description: 'Embedded code of the service manager. Auto selected user when creating location, installation. Used also inside communication and tags' service_manager_user: $ref: '#/definitions/user' finance_manager_user_id: type: string format: guid description: 'ID of the finance manager. Only used inside communication and tags' finance_manager_user_code: type: string description: 'Embedded code of the finance manager. Only used inside communication and tags' finance_manager_user: $ref: '#/definitions/user' account_manager_user_id: type: string format: guid description: 'ID of the account manager. Only used inside communication and tags' account_manager_user_code: type: string description: 'Embedded code of the account manager. Only used inside communication and tags' account_manager_user: $ref: '#/definitions/user' company_status_id: type: string format: guid description: 'Company Status' invoice_email_to: type: string description: 'Email to send invoice' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' id2: type: integer format: int32 description: 'Internal ID (numeric)' company_sales_territory_list: type: object properties: id: type: string format: guid description: 'Primary Key' company_id: type: string format: guid description: 'Foreign key to company Optionally required : company_id, company_code or company must be provided' company_code: type: string description: 'Embedded entity "company" using ERP PK when adding/updating company_sales_territory_list Optionally required : company_id, company_code or company must be provided' company: $ref: '#/definitions/company' sales_territory_id: type: string format: guid description: 'Foreign key to sales_territory Optionally required : sales_territory_id, sales_territory_code or sales_territory must be provided' sales_territory_code: type: string description: 'Embedded entity "sales_territory" using ERP PK when adding/updating company_sales_territory_list Optionally required : sales_territory_id, sales_territory_code or sales_territory must be provided' sales_territory: $ref: '#/definitions/sales_territory' reference_back_office: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 50' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' company_sector: type: object required: - id - name properties: id: type: string format: guid description: 'Primary Key' parent_id: type: string format: guid description: 'Key of parent company_sector' code: type: string description: 'Field used for embedded entity, to be used for key from external system Max length: 50' name: type: string description: 'Name of the company sector Max length: 50' company_type: type: object required: - name properties: id: type: string format: guid description: 'Primary key' name: type: string description: 'Name of the type' description: type: string description: 'Description of the type' sales_organization_id: type: string format: guid description: 'FK of sales_organization. Filled if specific of one SO, empty if can be used by all' sales_organization_code: type: string description: 'Embedded entity "sales_organization" using ERP PK when adding/updating company_type' sales_organization: $ref: '#/definitions/sales_organization' contact: type: object required: - id - lastname properties: id: type: string format: guid description: 'Primary key' firstname: type: string description: 'Firstname of the contact Max length: 50' lastname: type: string description: 'Lastname of the contact. If you have one single field available for firstname+lastname then use Lastname Max length: 50' company_id: type: string format: guid description: 'Company of the contact Optionally required : company_id,company_code or company must be provided' company_code: type: string description: 'Embedded entity "company" using ERP PK when adding/updating contact Optionally required : company_id,company_code or company must be provided' company: $ref: '#/definitions/company' db_language_id: type: string format: guid description: 'Language of the contact.If empty, will use the default on the system' db_language_code: type: string description: 'Language code entity using international isocode when adding/updating contact' db_title_id: type: string format: guid description: 'The title of the contact' archived: type: boolean description: 'Archive this contact to not have it anymore on the search' functions: type: string description: 'Function of the contact (ServiceManager,...) Max length: 64' e_login: type: string description: 'Login of the contact (if have access to ServiceDesk) Max length: 50' e_password: type: string description: 'Password in clear text of the contact (if have access to ServiceDesk) Max length: 50' notes: type: string description: 'Notes/Remark field' birthdate: type: string format: date-time description: 'Birthday date' create_date: type: string format: date-time description: 'Creation date+time' phone: type: string description: 'Phone number of the contact Max length: 50' mobile: type: string description: 'a number of the contact Max length: 50' email: type: string description: 'email Max length: 250' skype: type: string description: 'skype Max length: 250' private_phone: type: string description: 'Private phone number of the contact Max length: 50' private_mobile: type: string description: 'Private mobile number of the contact Max length: 50' private_email: type: string description: 'Private email Max length: 250' reference_back_office: type: string description: 'Field used for Embedded entity (store there your ERP PK) Max length: 50' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' contract: type: object required: - id - id2 properties: id: type: string format: guid description: 'Primary key' id2: type: integer format: int32 description: 'id2' company_id: type: string format: guid description: 'The company owner of this contract Optionally required : company_id, company_code or company must be provided' company_code: type: string description: 'Embedded entity "company" using ERP PK when adding/updating contract Optionally required : company_id, company_code or company must be provided' company: $ref: '#/definitions/company' reference: type: string description: 'Reference' reference_back_office: type: string description: 'Backoffice reference' reference_customer: type: string description: 'Customer Reference' date_start: type: string format: date-time description: 'Start Date of the contract' date_end: type: string format: date-time description: 'Contract End date' date_cancel: type: string format: date-time description: 'Readonly , date +time when the contract goes in status Cancelled' date_last_invoiced: type: string format: date-time description: 'Readonly contains the last date an invoice has been generated for this contract' name: type: string description: 'Name of the contract' description: type: string description: 'Description of Contract' feelist_id: type: string format: guid description: 'Feelist ID' article_price_label_id: type: string format: guid description: 'Article Price Llabel Id' account_manager_user_id: type: string format: guid description: 'FK of Account manager user' account_manager_user: $ref: '#/definitions/user' account_manager_user_code: type: string description: 'Embedded entity "account_manager_user" using ERP PK when adding/updating account_manager_user' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' renewal_term_months: type: integer format: int32 description: 'Renewal Term Months Range: inclusive between 0 and 1000000' feelist_warranty_discount: type: number format: decimal description: 'Feelist Warranty Discount Range: inclusive between 0 and 100' price_label_warranty_discount: type: number format: decimal description: 'Price Label Warranty Discount Range: inclusive between 0 and 100' driving_distance: type: number format: decimal description: 'Distance in km that are used to invoice the travel' travel_fee_fix_discount: type: number format: decimal description: 'Discount applied when computing the fee for travel' db_address: type: object properties: id: type: string format: guid description: 'Primary key' company_id: type: string format: guid description: 'The company owner of this address Optionally required : company_id, company_code or company must be provided' company_code: type: string description: 'Embedded entity "company" using ERP PK when adding/updating address Optionally required : company_id, company_code or company must be provided' company: $ref: '#/definitions/company' db_address_type_id: type: string format: guid description: 'Foreign key to the db_address_type. Please use controller DbAddressType to find the correct it to use' code: type: string description: 'Field used for Embedded entity (store there your ERP PK)' archived: type: boolean description: 'You cannot delete an address. The only way is to archive it.' name: type: string description: 'Name of the address' street: type: string description: 'Street Max length: 100' street_number: type: string description: 'Street number. Can be not used Max length: 50' zip: type: string description: 'Zip code Max length: 50' city: type: string description: 'City Max length: 50' phone: type: string description: 'Phone number' mobile: type: string description: 'Cell phone number' fax: type: string description: 'Fax number' email: type: string description: 'Email address Max length: 250' url: type: string description: 'Url' db_country_id: type: string format: guid description: 'Foreign key to table Country' db_country_code: type: string description: 'CountryCode entity using international code when adding/updating company' street2: type: string description: 'Additional information on the address not part of the postal address Max length: 50' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' db_country: type: object properties: id: type: string format: guid description: 'Primary Key' code: type: string description: 'Code in 2 letters, following ISO 3166' country_name: type: string description: 'Name of the country' is_default: type: boolean default_db_language_id: type: string format: guid disabled: type: boolean default_language: $ref: '#/definitions/db_language' db_file: type: object required: - id - name properties: id: type: string format: guid description: 'Primary key' db_table_id: type: string format: guid description: 'Table.id of the linked entity' db_table_name: type: string description: 'Foreign key to the table of the linked entity using table name. Can be article,company,contact,jobs,job_approval,project or task.Will be also filled on Get to allow Odata Filter on it' id_in_table: type: string format: guid description: 'Id of the linked entity' name: type: string description: 'Name of the file Max length: 100' description: type: string description: 'Description of the file Max length: 4000' file_name: type: string description: 'File_name of the file Max length: 100' image_width: type: integer format: int32 description: 'In case of picture, the original width' image_heigth: type: integer format: int32 description: 'In case of picture, the original heigth' mime_type: type: string description: 'Mime-type of the file.Used when redirect user to the data, like application/pdf or image/jpeg Max length: 100' file_content: type: array items: type: string description: 'The file content, in Byte Array. Use this field when using POST/Put' db_file_folder_id: type: string format: guid description: 'For Global Files : Foreign key to db file folder' db_file_folder_reference_back_office: type: string description: 'Embedded entity "db_file_folder" using ERP PK when adding/updating db_file' db_file_folder: $ref: '#/definitions/db_file_folder' sales_organization_id: type: string format: guid description: 'In case of global files - you can specifiy if it is available for all organization or only one' sales_organization_code: type: string description: 'Embedded entity "sales_organization" using ERP PK when adding/updating db_file' sales_organization: $ref: '#/definitions/sales_organization' file_type_name: type: string description: 'Readonly :Constant in case of specific file. Can be JOB_APPROVAL, ORDERPDF, PURCHASE_ORDERPDF' file_size: type: integer format: int64 description: 'Size in bytes of the file_content' user_notification: type: boolean description: 'For Global files - indicate if user should be informed that this file is available' is_archived: type: boolean description: 'Indicate if the file has been deleted (content flushed)' date_add: type: string format: date-time description: 'Date when file has been added' date_update: type: string format: date-time description: 'Update date, auto filled by Now if no value received' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' db_file_folder: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' parent_id: type: string format: guid description: 'Reference to a parent folder (in case of Child/Parent) when adding/updating folder' parent_reference_back_office: type: string description: 'Reference to a parent folder (in case of Child/Parent) when adding/updating folder' parent_db_file_folder: $ref: '#/definitions/db_file_folder' name: type: string description: ' Max length: 255' description: type: string description: 'Description of the folder Max length: 255' sequence: type: integer format: int32 description: 'Sorting field (0 first)' is_sales: type: boolean description: 'Indicate that this folder should be shown on the Sales environemnt (Company/Contact details)' is_services: type: boolean description: 'Indicate that this folder should be shown on the Services environemnt (Task/Project and Jobs details)' is_articles: type: boolean description: 'Indicate that this folder should be shown on the Article Details' reference_back_office: type: string description: ' Max length: 255' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' db_info: type: object required: - name - db_info_category_code properties: id: type: string format: guid description: 'Primary key' name: type: string description: 'Name of the db_info (Chapter name) Max length: 50' code: type: string description: 'The Id/Ref of the back office. Used by Embedded entity Max length: 50' sequence: type: integer format: int32 description: 'Sorting field (0 first), to order them' db_info_category_id: type: string format: guid description: 'Main Category this chapter belongs using real foreign keys. Needed to extract "DbReport" where the category is the db_report_type' db_info_category_code: type: string description: 'Specify on which main category this chapter should be shown. Possible values : Article,Company,Contact,Project,User,Jobs,Task,Opportunity,EquipmentFamily. Read more on API / HELP / Info Fields' parent_id: type: string format: guid description: 'Parent Db_info (chapter) (Parent / Child)' parent_db_info_code: type: string description: 'Embedded entity "db_info" for parent using ERP PK when adding/updating db_info' parent_db_info: $ref: '#/definitions/db_info' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' db_info_data: type: object required: - value properties: id: type: string format: guid description: 'Primary key' target_id: type: string format: guid description: 'Foreign key of the object using his Odyssee Guid Primary Key Optionally required : target_id or target_code must be provided' target_code: type: string description: 'Foreign key of the object using ERP PK when adding/updating db_info_data Optionally required : target_id or target_code must be provided' db_table_id: type: string format: guid description: 'Foreign key to the table that own the "target_id" (Example:article,company,project) using Guid Optionally required : db_table_id or db_table_name must be provided' db_table_name: type: string description: 'Foreign key to the table that own the "target_id" (Example:article,company,project) using table name Optionally required : db_table_id or db_table_name must be provided' db_info_field_id: type: string format: guid description: ' Optionally required : db_info_field_id, db_info_field_name or db_info_field must be provided' db_info_field_name: type: string description: ' Optionally required : db_info_field_id, db_info_field_name or db_info_field must be provided' db_info_field: $ref: '#/definitions/db_info_field' value: type: string description: 'The value of this info fields for this targetId. Follow the formating rules (API / HELP / Info Fields)' reference_back_office: type: string description: 'The Id/Ref of the back office for this object Max length: 50' sys_logical_delete: type: boolean description: 'sys_logical_delete' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' db_info_field: type: object required: - name - title properties: id: type: string format: guid description: 'Primary key' db_info_id: type: string format: guid description: 'Foreign key to db_info (chapters) Optionally required : db_info_id,db_info_code or node db_info must be provided' db_info_code: type: string description: 'Embedded entity "db_info" using ERP PK when adding/updating db_info_field Optionally required : db_info_id ,db_info_code or node db_info must be provided' db_info: $ref: '#/definitions/db_info' db_input_type_id: type: string format: guid description: 'Type of the fied (like Textbox,TextArea) Optionally required : db_input_type_id or db_input_type_code must be provided' db_input_type_code: type: string description: 'Use of the possible type : TextBox,TextArea,SelectBox,RadioButton,DateTime,NumericField,Checkbox,ComboBox,Email,Url,DatePicker,MonthCalendar,TimePiker,Number Optionally required : db_input_type_id or db_input_type_code must be provided' name: type: string description: 'Name/Code of the info field.Field used for Embedded entity (store there your ERP PK) Max length: 50' title: type: string description: 'Title that will be shown on the UI of the info field Max length: 50' sequence: type: integer format: int32 description: 'Sorting field (0 first), to order them inside the chapter' description: type: string description: 'Description of the field Max length: 255' is_mandatory: type: boolean description: 'Force user to fill it before saving' is_readonly: type: boolean description: 'Avoid user to edit the value using the UI' hide_in_view_if_empty: type: boolean description: 'Hide this field in view mode if no value' db_info_field_property: type: object required: - name - value properties: id: type: string format: guid description: 'Primary key' db_info_field_id: type: string format: guid description: 'Foreign key to db_info_field Optionally required : db_info_field_id, db_info_field_name or db_info_field must be provided' db_info_field_name: type: string description: 'Embedded entity "db_info_field" using ERP PK when adding/updating db_info_field_property Optionally required : db_info_field_id, db_info_field_name or db_info_field must be provided' db_info_field: $ref: '#/definitions/db_info_field' name: type: string description: 'Item.DisplayText, value that will be shown on the UI Max length: 50' value: type: string description: 'Value of the db_info_property.Store there your ERP PK Max length: 50' sequence: type: integer format: int32 description: 'Sorting field (0 first), to order them' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' db_language: type: object properties: id: type: string format: guid description: 'Primary Key' code: type: string description: 'Code of the language, 2 letters, following ISO 639-1' name: type: string description: 'Name of the language' is_default: type: boolean description: 'Is the default language to be used when nothing set' disabled: type: boolean description: 'Disable the language to not have it on the interface' db_notes: type: object required: - id_in_table - notes properties: id: type: string format: guid description: 'Primary Key' db_table_id: type: string format: guid description: 'Table Id db notes linked to Optionally required : db_table_id or db_table_name must be provided' db_table_name: type: string description: 'Foreign key to the table this db_notes is linked to (Possibles values are company,jobs,project,task) using table name Optionally required : db_table_id or db_table_name must be provided' id_in_table: type: string format: guid description: 'Item id on the given table on which db note linked to' user_id: type: string format: guid description: 'Created User ID Optionally required : user_id, user_code or user must be provided' user_code: type: string description: 'Embedded entity "user" using ERP PK when adding/updating a db_notes Optionally required : user_id, user_code or user must be provided' user: $ref: '#/definitions/user' date_add: type: string format: date-time description: 'Date Added. is on the local user time.' dateutc_add: type: string format: date-time description: 'Date Added. Auto-filled by NOW if empty' notes: type: string description: 'Notes' reference_back_office: type: string description: ' Max length: 255' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' db_payment_methods: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the db payment method. Max length: 255' description: type: string description: 'Description of the db payment method. Max length: 4000' reference_back_office: type: string description: 'The Id/Ref of the back office for this db payment method. Used by Embedded entity. Max length: 50' activated: type: boolean description: 'If true db payment method is activated.' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' db_report: type: object required: - db_report_type_id properties: id: type: string format: guid description: 'Primary Key' db_report_type_id: type: string format: guid description: 'db report type id' user_id: type: string format: guid description: 'Created user id' company_id: type: string format: guid description: 'The Final company that own this report (If WO Report, the company that owns the installation/project) Optionally required : company_id,company_code or node company must be provided' company_code: type: string description: 'Embedded entity "company" using ERP PK when adding/updating db_report Optionally required : company_id, company_code or company must be provided' company: $ref: '#/definitions/company' db_table_name: type: string description: 'TableName which db report linked to. Possible value are jobs or meeting Optionally required : db_table_id or db_table_name must be provided' db_table_id: type: string format: guid description: 'Table ID which db report linked to. Optionally required : db_table_id or db_table_name must be provided' id_in_table: type: string format: guid description: 'Item id of the table which db report linked to' date_last_update: type: string format: date-time description: 'Date last updated' reference_back_office: type: string description: ' Max length: 255' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' email_notification: type: object required: - id properties: id: type: string format: guid description: 'Primary Key' db_table_id: type: string format: guid description: 'db_table_id' id_in_table: type: string format: guid description: 'id_in_table' date_sent: type: string format: date-time description: 'utc date time email sent.' type: type: string description: 'type, like CONTRACT_RENEW , IMPORT_DONE , JOB_APPROVAL , JOB_PLANNING , ORDER , PURCHASE_ORDER , TASK' subject: type: string description: 'subject of email' message: type: string description: 'email message in html format' email_notification_list: type: object required: - id properties: id: type: string format: guid description: 'Primary Key' email_notification_id: type: string format: guid description: 'email_notification_id' to_email_address: type: string description: 'email address of receiver.' to_display_name: type: string description: 'email display name' destination_type: type: string description: 'destination type like TO,CC or BCC.' equipment_brand: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the equipment brand Max length: 50' code: type: string description: 'The Id/Ref of the back office. Used by Embedded entity Max length: 50' sales_organization_id: type: string format: guid description: 'FK of sales_organization. Filled if specific of one SO, empty if can be used by all' sales_organization_code: type: string description: 'Embedded entity "sales_organization" using ERP PK when adding/updating company_type' sales_organization: $ref: '#/definitions/sales_organization' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' equipment_family: type: object required: - id - name properties: id: type: string format: guid description: 'Primary Key' name: type: string description: 'Name of the equipment family Max length: 50' description: type: string description: 'Description of the equipment family Max length: 4000' code: type: string description: 'The Id/Ref of the back office. Used by Embedded entity Max length: 50' _parent_id: type: string format: guid description: 'Parent Equipment Family (Parent / Child) when adding/updating equipment_family' _parent_code: type: string description: 'Embedded entity "equipment_family" for parent (Parent / Child) using ERP PK when adding/updating equipment_family' _parent_equipment_family: $ref: '#/definitions/equipment_family' sales_organization_id: type: string format: guid description: 'FK of sales_organization. Filled if specific of one SO, empty if can be used by all' sales_organization_code: type: string description: 'Embedded entity "sales_organization" using ERP PK when adding/updating company_type' sales_organization: $ref: '#/definitions/sales_organization' modified_dateutc: type: string format: date-time description: 'Readonly system field managed by database, filled with GetUtcDate when adding,updating' equipment_model: type: object required: - name properties: id: type: string format: guid description: 'Primary Key' code: type: string description: 'The Id/Ref of the back office. Used by Embedded entity Max length: 50' name: type: string description: 'Name of the equipment model Max length: 50' description: type: string description: 'Description of the equipment model' equipment_brand_id: type: string format: guid description: 'FK Of Equipment brand' equipment_brand_code: type: string description: 'Embedded entity "equipment_brand" using ERP PK when adding/updating equipment_model' equipment_brand: $ref: '#/definitions/equipment_brand' equipment_family_id: type: string format: guid description: 'FK Of equipment_family' equipment_family_code: type: string description: 'Embedded entity "equipment_family" using ERP PK when adding/updating equipment_model' equipment_family: $ref: '#/definitions/equipment_family' date_in_production_since: type: string format: date-time description: 'Date in production since' date_out_of_production_since: type: string format: date-time description: 'Date Out Of production since' date_end_support: type: string format: date-time description: 'Date end support' sales_organization_id: type: string format: guid description: 'FK of sales_organization. Filled if specific of one SO, empty if can be used by all' sales_organization_code: type: string description: 'Embedded entity "sales_organization" using ERP PK when adding/updating equipment_model' sales_organization: $ref: '#/definitions/sales_or