Skip to main content

Config for surveycto

Jobs that use the surveycto adaptor may require authentication. A "credential" for the surveycto adaptor will follow the schema below. When using the CLI, you can set up your own state.configuration by using the sample below.

Sample Configuration

Paste this into the configuration key of your state.json file and modify the values to run jobs locally.

{
"instanceName": "openfn_test",
"username": "someusername",
"password": "@some(%)!Password"
}

Full Schema

The full configuration schema describes each attribute of the credential and notes those that are required.

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"instanceName": {
"title": "Instance name",
"type": "string",
"description": "Your Surveycto instance name",
"minLength": 1,
"examples": [
"openfn_test"
]
},
"username": {
"title": "Username",
"type": "string",
"description": "Your Surveycto instance username",
"minLength": 1,
"examples": [
"someusername"
]
},
"password": {
"title": "Password",
"type": "string",
"description": "Your Surveycto instance password",
"writeOnly": true,
"minLength": 1,
"examples": [
"@some(%)!Password"
]
}
},
"type": "object",
"additionalProperties": true,
"required": [
"instanceName",
"username",
"password"
]
}