Skip to content
  • Get Available Version Numbers for Language Interface File

    Request

    Use this endpoint to retrieve a list of all available releases for a language interface file, in the format YYYY.MM.

    Path
    architecturestringrequired

    Describes the target architecture (ie, 'bitness'). Used for object binaries and language interface binaries on certain OS platforms.

    Enum:"32BIT""64BIT""ANY"
    Example:ANY
    filenamestringrequired

    Name of File.

    Example:mdAddr_cSharpCode.cs
    languagestringrequired

    Describes the language interface.

    • NET - .NET
    • C - C/C++
    • JAVA - Java
    • PERL - Perl
    • PHP - PHP (legacy, prior to v7)
    • PHP7 - PHP v7
    • PYTHON - Python
    • RUBY - Ruby
    • PLSQL - Oracle PL/SQL
    • MSSQL - SQL Server T-SQL
    Enum:"NET""C""JAVA""PERL""PHP""PHP7""PYTHON""RUBY""PLSQL""MSSQL"
    Example:NET
    osstringrequired

    Describes the target OS. Used for object binaries and language interface binaries.

    • AIX - AIX PowerPC
    • ANY - Any OS
    • HPUX_IT - HP-UX ia64
    • HPUX_PA - HP-UX RISC
    • LINUX - Linux Redhat
    • SOLARIS - Solaris Sparc
    • WINDOWS - Windows
    • ZLINUX - IBM zLinux
    Enum:"AIX""ANY""HPUX_IT""HPUX_PA""LINUX""SOLARIS""WINDOWS""ZLINUX"
    Example:ANY
    Query
    formatstring

    Desired Format of Response.

    • crLfList - Default. File list delimited by CR/LF.
    • lfList - File list delimited by LF.
    • comma - comma delimited list.
    • tab - tab delimited list.
    • json - JSON serialized list.
    • xml - XML serialized list.
    Enum:"crLfList""lfList""comma""tab""json""xml"
    Example:format=json
    idany, (password)required

    The License Key issued by Melissa.

    Example:id={REPLACE-WITH-YOUR-LICENSE-KEY}
    Headers
    Acceptstringrequired

    Format of the response.

    Enum:"application/json""*/*"
    Example:application/json
    Content-Typestringrequired

    Format of the request.

    Enum:"application/json""application/xml"
    curl -i -X GET \
      'https://releases.melissadata.net/Releases/Interface/ANY/NET/ANY/mdAddr_cSharpCode.cs?id=%7BREPLACE-WITH-YOUR-LICENSE-KEY%7D' \
      -H 'Accept: application/json' \
      -H 'Content-Type: application/json'

    Responses

    Successful response.

    Bodyapplication/json
    Array [
    string

    Release version number in the format YYYY.MM.

    ]
    Response
    [ "2023.06", "2023.07", "2023.08", "2023.12", "2024.01" ]