openapi: 3.2.0 info: version: 0.48.24 termsOfService: https://www.decisiv.com/terms-of-use contact: name: Decisiv Support email: support@decisiv.com url: https://www.decisiv.com title: Service Management Sublet Case Participants API description: The **Decisiv SRM Gateway** `Service Management` module provides the API functionality for managing an asset's case lifecycle from a Service Providers perspective. license: name: Proprietary identifier: proprietary url: https://www.decisiv.com/terms-of-use/ servers: - url: https://srm-api.staging.decisivapps.com - url: https://srm-api.decisivapps.com security: - OAuth2AuthorizationCode: [] AccessToken: [] - OAuth2Password: [] AccessToken: [] tags: - name: Sublet Case Participants paths: /service_management/{srm_account_id}/v1/sublet_cases/{sublet_case_id}/participants: get: summary: Lists the participants for a selected sublet case tags: - Sublet Case Participants parameters: - name: srm_account_id in: path description: The account ID for SRM required: true schema: type: string - name: sublet_case_id in: path schema: type: string format: uuid description: The sublet case UUID required: true responses: '200': description: Returns list of participants for the sublet case content: application/vnd.api+json: example: data: - id: bd763ee6-b2f2-49fc-a375-7fb5346ee19d type: participants attributes: name: Dealer Name scopes: - service_provider - billing_customer - shipping_customer schema: $ref: '#/components/schemas/participants' '401': description: This response may occur when the access token provided within the Authorization token has expired. content: application/vnd.api+json: example: errors: - title: Access unauthorized detail: Access unauthorized code: decisiv::access_token:001 status: '401' schema: $ref: '#/components/schemas/errors_response' '403': description: This response may occur when the authenticated user embedded within the Authorization header does not have access to the requested resource. content: application/vnd.api+json: example: errors: - title: Forbidden detail: User does not have permission to perform this action on the requested resource(s) code: decisiv:access:001 status: '403' schema: $ref: '#/components/schemas/errors_response' '404': description: This response may occur when the requested resource is not found. content: application/vnd.api+json: example: errors: - title: Record not found detail: The requested record or one of its relationships could not be found code: '404' status: '404' schema: $ref: '#/components/schemas/errors_response' '424': description: This response may occur when there is an unresolved data dependency or configuration required inside of the Decisiv Platform preventing access to the requested action. content: application/vnd.api+json: example: errors: - title: Failed Dependency detail: Failed Dependency code: '424' status: '424' schema: $ref: '#/components/schemas/errors_response' '504': description: This response may occur when there is an unexpected system timeout. content: application/vnd.api+json: example: errors: - code: '504' detail: Gateway timeout error status: '504' title: Gateway timeout error schema: $ref: '#/components/schemas/errors_response' /service_management/{srm_account_id}/v1/sublet_cases/{sublet_case_id}/participants/{id}: get: summary: List details on a specific Participant tags: - Sublet Case Participants parameters: - name: srm_account_id in: path description: The account ID for SRM required: true schema: type: string - name: sublet_case_id in: path schema: type: string format: uuid description: The sublet case UUID required: true - name: id in: path schema: type: string format: uuid description: The resource ID required: true responses: '200': description: Show details for requested Participant content: application/vnd.api+json: example: data: id: bd763ee6-b2f2-49fc-a375-7fb5346ee19d type: participants attributes: name: Dealer Name scopes: - service_provider - billing_customer - shipping_customer schema: $ref: '#/components/schemas/participant' '401': description: This response may occur when the access token provided within the Authorization token has expired. content: application/vnd.api+json: example: errors: - title: Access unauthorized detail: Access unauthorized code: decisiv::access_token:001 status: '401' schema: $ref: '#/components/schemas/errors_response' '403': description: This response may occur when the authenticated user embedded within the Authorization header does not have access to the requested resource. content: application/vnd.api+json: example: errors: - title: Forbidden detail: User does not have permission to perform this action on the requested resource(s) code: decisiv:access:001 status: '403' schema: $ref: '#/components/schemas/errors_response' '404': description: This response may occur when the requested resource is not found. content: application/vnd.api+json: example: errors: - title: Record not found detail: The requested record or one of its relationships could not be found code: '404' status: '404' schema: $ref: '#/components/schemas/errors_response' '424': description: This response may occur when there is an unresolved data dependency or configuration required inside of the Decisiv Platform preventing access to the requested action. content: application/vnd.api+json: example: errors: - title: Failed Dependency detail: Failed Dependency code: '424' status: '424' schema: $ref: '#/components/schemas/errors_response' '504': description: This response may occur when there is an unexpected system timeout. content: application/vnd.api+json: example: errors: - code: '504' detail: Gateway timeout error status: '504' title: Gateway timeout error schema: $ref: '#/components/schemas/errors_response' components: schemas: error_response: type: object properties: status: type: string title: type: string detail: type: - string - 'null' code: type: - string - 'null' source: type: object properties: parameter: type: - string - 'null' pointer: type: - string - 'null' links: type: object description: Links related to this error (e.g. documentation reference). additionalProperties: type: string format: uri required: - status - title participants: type: object required: - data properties: data: type: array items: $ref: '#/components/schemas/participant_properties-data' meta: type: object participant: type: object required: - data properties: data: type: object properties: id: type: string format: uuid type: type: string enum: - participants attributes: type: object properties: name: type: string description: Participant name example: Pilot Travel Centers scopes: type: array description: A list of scopes to which the participant belongs. items: type: string description: Name of the scope enum: - customer - billing_customer - shipping_customer - service_provider - originator - external_advisor minItems: 1 example: - service_provider - billing_customer - shipping_customer required: - attributes - type - id errors_response: type: object properties: errors: type: array items: $ref: '#/components/schemas/error_response' required: - errors participant_properties-data: type: object properties: id: type: string format: uuid type: type: string enum: - participants attributes: type: object properties: name: type: string description: Participant name example: Pilot Travel Centers scopes: type: array description: A list of scopes to which the participant belongs. items: type: string description: Name of the scope enum: - customer - billing_customer - shipping_customer - service_provider - originator - external_advisor minItems: 1 example: - service_provider - billing_customer - shipping_customer required: - attributes - type - id securitySchemes: AccessToken: type: http scheme: bearer bearerFormat: JWT OAuth2AuthorizationCode: type: oauth2 description: OAuth 2.0 Authorization Code flow. This is the required flow for new integrations. See https://api-docs.decisiv.net/docs/api/oauth/ flows: authorizationCode: authorizationUrl: https://login.decisiv.net/auth/api_gateway tokenUrl: https://login.decisiv.net/oauth/token refreshUrl: https://login.decisiv.net/oauth/token scopes: {} OAuth2Password: type: oauth2 description: '**Deprecated.** OAuth 2.0 Password flow. New integrations must use the Authorization Code flow (`OAuth2AuthorizationCode`); this flow remains available only during the migration window and will be removed in a future release. See https://api-docs.decisiv.net/docs/api/oauth/' flows: password: tokenUrl: https://login.decisiv.net/oauth/token scopes: {}