feat(Copper Node): Update credential to support HTTP Request node (#9837)

This commit is contained in:
Jochem
2024-07-03 09:59:44 +02:00
committed by GitHub
parent 403e19b3e3
commit e6ad5a7193
2 changed files with 28 additions and 10 deletions

View File

@@ -1,4 +1,9 @@
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
import type {
IAuthenticateGeneric,
ICredentialTestRequest,
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class CopperApi implements ICredentialType {
name = 'copperApi';
@@ -25,4 +30,22 @@ export class CopperApi implements ICredentialType {
default: '',
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
'X-PW-AccessToken': '={{$credentials.apiKey}}',
'X-PW-Application': 'developer_api',
'X-PW-UserEmail': '={{$credentials.email}}',
},
},
};
test: ICredentialTestRequest = {
request: {
baseURL: 'https://api.copper.com/developer_api/v1/',
url: 'users/me',
},
};
}