Move credentials to correct directory
This commit is contained in:
parent
2496f9bef7
commit
1f0e9fc3e6
1 changed files with 1 additions and 1 deletions
39
credentials/HttpBin.credentials.ts
Normal file
39
credentials/HttpBin.credentials.ts
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
import {
|
||||
IAuthenticateHeaderAuth,
|
||||
ICredentialTestRequest,
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from "n8n-workflow";
|
||||
|
||||
export class HttpBinApi implements ICredentialType {
|
||||
name = "httpbinApi";
|
||||
displayName = "HttpBin API";
|
||||
documentationUrl = "httpbin";
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: "API Key",
|
||||
name: "apiKey",
|
||||
type: "string",
|
||||
default: "",
|
||||
},
|
||||
{
|
||||
displayName: "Domain",
|
||||
name: "domain",
|
||||
type: "string",
|
||||
default: "https://httpbin.org",
|
||||
},
|
||||
];
|
||||
authenticate = {
|
||||
type: "headerAuth",
|
||||
properties: {
|
||||
name: "api-key",
|
||||
value: "={{$credentials.apiKey}}",
|
||||
},
|
||||
} as IAuthenticateHeaderAuth;
|
||||
test: ICredentialTestRequest = {
|
||||
request: {
|
||||
baseURL: "={{$credentials?.domain}}/v3",
|
||||
url: "/account",
|
||||
},
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue