Expedia Group · Capability

Expedia Group EPS Deposit API — Deposit

Expedia Group EPS Deposit API — Deposit. 3 operations. Lead operation: Expedia Group Obtain the deposit policy for a given property. Self-contained Naftiko capability covering one Expedia Group business surface.

Run with Naftiko Expedia GroupDeposit

What You Can Do

GET
Getdepositpolicy — Expedia Group Obtain the deposit policy for a given property
/v1/properties/{propertyid}/depositpolicy
PUT
Setdepositpolicy — Expedia Group Create/update the deposit policy for a given property
/v1/properties/{propertyid}/depositpolicy
DELETE
Deletedepositpolicy — Expedia Group Delete the deposit policy for a given property
/v1/properties/{propertyid}/depositpolicy

MCP Tools

expedia-group-obtain-deposit-policy

Expedia Group Obtain the deposit policy for a given property

read-only idempotent
expedia-group-create-update-deposit

Expedia Group Create/update the deposit policy for a given property

idempotent
expedia-group-delete-deposit-policy

Expedia Group Delete the deposit policy for a given property

idempotent

Capability Spec

expedia-deposit-deposit.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Expedia Group EPS Deposit API — Deposit
  description: 'Expedia Group EPS Deposit API — Deposit. 3 operations. Lead operation: Expedia Group Obtain the deposit policy
    for a given property. Self-contained Naftiko capability covering one Expedia Group business surface.'
  tags:
  - Expedia Group
  - Deposit
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    EXPEDIA_GROUP_API_KEY: EXPEDIA_GROUP_API_KEY
capability:
  consumes:
  - type: http
    namespace: expedia-deposit-deposit
    baseUri: https://services.expediapartnercentral.com
    description: Expedia Group EPS Deposit API — Deposit business capability. Self-contained, no shared references.
    resources:
    - name: properties-propertyId-depositPolicy
      path: /properties/{propertyId}/depositPolicy
      operations:
      - name: getdepositpolicy
        method: GET
        description: Expedia Group Obtain the deposit policy for a given property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: propertyId
          in: path
          type: string
          description: Expedia Property ID
          required: true
      - name: setdepositpolicy
        method: PUT
        description: Expedia Group Create/update the deposit policy for a given property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: propertyId
          in: path
          type: string
          description: Expedia Property ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletedepositpolicy
        method: DELETE
        description: Expedia Group Delete the deposit policy for a given property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: propertyId
          in: path
          type: string
          description: Expedia Property ID
          required: true
    authentication:
      type: basic
      username: '{{env.EXPEDIA_GROUP_USER}}'
      password: '{{env.EXPEDIA_GROUP_PASS}}'
  exposes:
  - type: rest
    namespace: expedia-deposit-deposit-rest
    port: 8080
    description: REST adapter for Expedia Group EPS Deposit API — Deposit. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/properties/{propertyid}/depositpolicy
      name: properties-propertyid-depositpolicy
      description: REST surface for properties-propertyId-depositPolicy.
      operations:
      - method: GET
        name: getdepositpolicy
        description: Expedia Group Obtain the deposit policy for a given property
        call: expedia-deposit-deposit.getdepositpolicy
        with:
          propertyId: rest.propertyId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: setdepositpolicy
        description: Expedia Group Create/update the deposit policy for a given property
        call: expedia-deposit-deposit.setdepositpolicy
        with:
          propertyId: rest.propertyId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedepositpolicy
        description: Expedia Group Delete the deposit policy for a given property
        call: expedia-deposit-deposit.deletedepositpolicy
        with:
          propertyId: rest.propertyId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: expedia-deposit-deposit-mcp
    port: 9090
    transport: http
    description: MCP adapter for Expedia Group EPS Deposit API — Deposit. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: expedia-group-obtain-deposit-policy
      description: Expedia Group Obtain the deposit policy for a given property
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: expedia-deposit-deposit.getdepositpolicy
      with:
        propertyId: tools.propertyId
      outputParameters:
      - type: object
        mapping: $.
    - name: expedia-group-create-update-deposit
      description: Expedia Group Create/update the deposit policy for a given property
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: expedia-deposit-deposit.setdepositpolicy
      with:
        propertyId: tools.propertyId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: expedia-group-delete-deposit-policy
      description: Expedia Group Delete the deposit policy for a given property
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: expedia-deposit-deposit.deletedepositpolicy
      with:
        propertyId: tools.propertyId
      outputParameters:
      - type: object
        mapping: $.