Coinfer
  1. Experiment
Coinfer
  • Root markdown
  • Authorization
    • Get Auth0 login configuration
      GET
    • Login with Auth0.
      POST
    • Login with password.
      POST
    • Get information of current user.
      GET
    • Update information of current user.
      PUT
    • Logout the system.
      POST
    • List all of current user's tokens.
      GET
    • Create a new authorization token.
      POST
    • Update a token by its ID.
      PUT
    • Delete a token by its ID.
      DELETE
  • Other
    • Get changelogs of Coinfer.
      GET
  • Model
    • List models.
      GET
    • Delete models in batch.
      DELETE
    • Create a new model.
      POST
    • Update a model by its ID.
      POST
    • View a model by its ID.
      GET
    • View share snapshot of a model
      GET
    • Get configuration about how to run a model.
      GET
  • Share
    • Share a model specified by model ID.
    • Delete model shares.
    • Get basic share information of a model sharing.
    • Share an experiment.
    • Delete experiment shares.
    • Get sharing information of an experiment.
  • Experiment
    • List experiments or data.
      GET
    • Create an experiment.
      POST
    • Delete experiments in batch.
      DELETE
    • View an experiment by its ID.
      GET
    • Update an experiment by its ID.
      POST
    • View a data object by its ID.
      GET
    • Update a data object by its ID.
      POST
    • Delete a data object by its ID.
      DELETE
    • Get Cloudwatch logs
      GET
  • Schemas
    • 示例数据模型
      • RunModelParam
      • Pet
      • Category
      • Tag
    • Schemas
      • UserLogin
      • Auth0ConfigRsp
      • ModifyCurrentUser
      • SuccRsp[Auth0ConfigRsp]
      • CreateToken
      • Auth0LoginRsp
      • ModifyToken
      • SuccRsp[Auth0LoginRsp]
      • ListModels
      • SuccRsp[UserLoginRsp]
      • BatchDeleteModel
      • UserLoginRsp
      • CreateModel
      • ErrRsp
      • ModelContent
      • ModelMeta
      • SuccRsp[UserInfoRsp]
      • ModelTreeNode
      • UserInfoRsp
      • UpdateModel
      • CreateShare
      • SuccRsp[NoneType]
      • DeleteModelShare
      • GetTokensRsp
      • ListObject
      • SuccRsp[list[GetTokensRsp]]
      • BatchDeleteExperiment
      • SuccRsp[GetTokensRsp]
      • ViewXP
      • UpdateXP
      • UpdateData
      • GetChangelogRsp
      • DeleteExperimentShare
      • SuccRsp[GetChangelogRsp]
      • ListModelsRspItem
      • ListingRspData[ListModelsRspItem]
      • ListingRsp[ListModelsRspItem]
      • ShareInfoModel
      • SuccRsp[ListModelsRspItem]
      • SuccRsp[ViewModelsRsp]
      • ViewModelShareInfo
      • ViewModelsRsp
      • GetConfigRsp
      • SuccRsp[GetConfigRsp]
      • CreateShareRsp
      • SuccRsp[CreateShareRsp]
      • GetShareRsp
      • SuccRsp[GetShareRsp]
      • ListObjectRsp
      • ListingRspData[ListObjectRsp]
      • ListingRsp[ListObjectRsp]
      • MetaModel
      • SuccRsp[Any]
      • SuccRsp[ViewCloudwatchLogsRsp]
      • ViewCloudwatchLogsRsp
  1. Experiment

Get Cloudwatch logs

Testing Environment
https://dev.coinfer.ai
Testing Environment
https://dev.coinfer.ai
GET
https://dev.coinfer.ai
/mcmc/object/{objid}/cloudwatch-logs
As logs may contain sensetive info, this api can only be used by admin

Request

Path Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://dev.coinfer.ai/mcmc/object//cloudwatch-logs' \
--header 'Authorization: Bearer {{token}}'

Responses

🟢200OK
application/json
OK
Body

Example
{
    "status": "ok",
    "data": {
        "logs": [
            [
                "string",
                "string"
            ]
        ]
    }
}
🟠400Bad Request
Modified at 2025-02-14 07:00:18
Previous
Delete a data object by its ID.
Next
RunModelParam
Built with